| 12345678910111213141516 |
- <template>
- <ArtException
- :data="{
- title: '403',
- desc: $t('exceptionPage.403'),
- btnText: $t('exceptionPage.gohome'),
- imgUrl
- }"
- />
- </template>
- <script setup lang="ts">
- import imgUrl from '@imgs/svg/403.svg'
- defineOptions({ name: 'Exception403' })
- </script>
|