refactor(projects): 重构路由页面组件的导入

This commit is contained in:
Soybean
2022-02-11 16:14:30 +08:00
parent a7a269d6a6
commit e65034d946
31 changed files with 65 additions and 163 deletions

View 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>

View 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>

View 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>