404.vue 681 B

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