404.vue 237 B

1234567891011121314151617
  1. <template>
  2. <div class="error-page">
  3. 404
  4. </div>
  5. </template>
  6. <script setup>
  7. import router from '~src/router/index'
  8. const goToHome = () => {
  9. router.push({ path: '/' })
  10. }
  11. </script>
  12. <style lang="scss" scoped>
  13. </style>