mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-25 22:30:19 +08:00
18 lines
448 B
Vue
18 lines
448 B
Vue
<template>
|
|
<div class="flex-center flex-col wh-full">
|
|
<exception-svg type="403" :color="theme.themeColor" />
|
|
<router-link to="/">
|
|
<n-button type="primary">回到首页</n-button>
|
|
</router-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { NButton } from 'naive-ui';
|
|
import { ExceptionSvg } from '@/components';
|
|
import { useThemeStore } from '@/store';
|
|
|
|
const theme = useThemeStore();
|
|
</script>
|
|
<style scoped></style>
|