404.vue 657 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div class='full-screen flex flex-center'>
  3. <img src='https://wutong-1302848345.cos.ap-chengdu.myqcloud.com/wtzx/4e993b2d27a544a893ddbc8f60cc2a65.svg'/>
  4. <div class='ml-20'>
  5. <h1 style='font-size: 82px' class='bold'>404</h1>
  6. <div class='mt-10 bold'>抱歉,你访问的页面不存在</div>
  7. <el-button type='primary' class='mt-20' @click='goHome'>返回首页</el-button>
  8. </div>
  9. </div>
  10. </template>
  11. <route>
  12. {
  13. meta: {
  14. layout: 'empty',
  15. },
  16. }
  17. </route>
  18. <script>
  19. export default {
  20. name: '404',
  21. methods: {
  22. goHome () {
  23. this.$router.push('/')
  24. }
  25. }
  26. }
  27. </script>
  28. <style scoped>
  29. </style>