Files
art-design/src/views/exception/403/index.vue
T
2026-01-10 10:10:57 +08:00

17 lines
295 B
Vue

<!-- 403页面 -->
<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>