mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-25 22:30:19 +08:00
refactor(projects): 重构路由页面组件的导入
This commit is contained in:
8
src/views/exception/403/index.vue
Normal file
8
src/views/exception/403/index.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<template>
|
||||
<exception-base type="403" />
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { ExceptionBase } from '../../system-view/components';
|
||||
</script>
|
||||
<style scoped></style>
|
||||
8
src/views/exception/404/index.vue
Normal file
8
src/views/exception/404/index.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<template>
|
||||
<exception-base type="404" />
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { ExceptionBase } from '../../system-view/components';
|
||||
</script>
|
||||
<style scoped></style>
|
||||
8
src/views/exception/500/index.vue
Normal file
8
src/views/exception/500/index.vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<template>
|
||||
<exception-base type="500" />
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { ExceptionBase } from '../../system-view/components';
|
||||
</script>
|
||||
<style scoped></style>
|
||||
Reference in New Issue
Block a user