index.vue 296 B

12345678910111213141516
  1. <template>
  2. <ArtException
  3. :data="{
  4. title: '404',
  5. desc: $t('exceptionPage.404'),
  6. btnText: $t('exceptionPage.gohome'),
  7. imgUrl
  8. }"
  9. />
  10. </template>
  11. <script setup lang="ts">
  12. import imgUrl from '@imgs/svg/404.svg'
  13. defineOptions({ name: 'Exception404' })
  14. </script>