404.vue 497 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div class="errorBox">
  3. <img src="@/public/error/404.png" alt="遇到了网络错误!">
  4. <div @click="goHome" class="goHome">
  5. 返回网站首页
  6. </div>
  7. </div>
  8. </template>
  9. <script setup>
  10. //import { ElButton } from 'element-plus'
  11. const router = useRouter()
  12. console.log(123123)
  13. console.log(router.query.findPage)
  14. //跳转回到首页
  15. const goHome = () => {
  16. router.push('/')
  17. }
  18. </script>
  19. <style lang="less" scoped>
  20. @import '@/assets/css/error.less';
  21. </style>