mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
18 lines
454 B
Vue
18 lines
454 B
Vue
<template>
|
|
<div class="flex-center flex-col w-full h-full">
|
|
<exception-svg type="500" :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>
|