feat(projects): 添加固定路由

This commit is contained in:
Soybean
2021-09-09 12:00:18 +08:00
parent 638a8e9856
commit ff4a09c452
14 changed files with 204 additions and 90 deletions

View File

@ -0,0 +1,12 @@
<template>
<n-scrollbar class="h-full" :x-scrollable="true">
<div class="inline-block w-full min-h-100vh">
<router-view />
</div>
</n-scrollbar>
</template>
<script lang="ts" setup>
import { NScrollbar } from 'naive-ui';
</script>
<style scoped></style>