Files
dafuweng-saiadmin6.x/saiadmin-artd/src/views/exception/404/index.vue
2026-03-03 09:53:54 +08:00

17 lines
315 B
Vue

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