17 lines
295 B
Vue
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>
|