Nuxt配置错误页面

layouts文件夹新建error.vue

<template>
  <div>
    <h2 v-if="error.statusCode == 404">404 - 页面不存在</h2>
    <h2 v-else>服务器错误</h2>
    <button>
      <nuxt-link to="/">HOME</nuxt-link>
    </button>
  </div>
</template>

<script>
  export default {
     
     
    props: ['error'],
  }
</script>

猜你喜欢

转载自blog.csdn.net/AK852369/article/details/112763489
今日推荐