1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <!-- 403页面 -->
| <template>
| <ArtException
| :data="{
| title: '403',
| desc: $t('exceptionPage.403'),
| btnText: $t('exceptionPage.gohome'),
| imgUrl
| }"
| />
| </template>
|
| <script setup>
| import imgUrl from '@imgs/svg/403.svg'
|
| defineOptions({ name: 'Exception403' })
| </script>
|
|