404.vue 440 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="not-found">
  3. <el-result
  4. icon="error"
  5. title="404"
  6. sub-title="抱歉,您访问的页面不存在"
  7. >
  8. <template #extra>
  9. <el-button type="primary" @click="$router.push('/')">返回首页</el-button>
  10. </template>
  11. </el-result>
  12. </div>
  13. </template>
  14. <style scoped>
  15. .not-found {
  16. height: 100vh;
  17. display: flex;
  18. align-items: center;
  19. justify-content: center;
  20. }
  21. </style>