<script> export default { props: ["error"], // layout: 'blog' // you can set a custom layout for the error page }; </script> <template> <div> <h1 v-if="error.statusCode === 404">沒有此頁面</h1> <h1 v-else>喔喔~我秀斗了</h1> </div> </template>
進階搜尋