error.vue 438 B

12345678910111213141516171819202122
  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. //跳转回到首页
  13. const goHome = () => {
  14. router.push('/')
  15. }
  16. </script>
  17. <style lang="less" scoped>
  18. @import '@/assets/css/error.less';
  19. </style>