mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
feat(project): 增加外部文档页面
This commit is contained in:
parent
0d2d987292
commit
7055c1e631
@ -243,6 +243,45 @@ const userRoutes = [
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'docments',
|
||||||
|
path: '/docments',
|
||||||
|
redirect: '/docments/not-found',
|
||||||
|
meta: {
|
||||||
|
title: '外链文档',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'icon-park-outline:error-computer',
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: 'docments_vue',
|
||||||
|
path: '/docments/vue',
|
||||||
|
meta: {
|
||||||
|
title: 'vue',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'icon-park-outline:error',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'docments_vite',
|
||||||
|
path: '/docments/vite',
|
||||||
|
meta: {
|
||||||
|
title: 'vite',
|
||||||
|
requiresAuth: true,
|
||||||
|
icon: 'carbon:error',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// name: 'service-error',
|
||||||
|
// path: '/docments/service-error',
|
||||||
|
// meta: {
|
||||||
|
// title: '500页',
|
||||||
|
// requiresAuth: true,
|
||||||
|
// icon: 'carbon:data-error',
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
],
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'error',
|
name: 'error',
|
||||||
path: '/error',
|
path: '/error',
|
||||||
|
@ -43,9 +43,9 @@
|
|||||||
>
|
>
|
||||||
<TabBar class="h-45px" />
|
<TabBar class="h-45px" />
|
||||||
</n-layout-header>
|
</n-layout-header>
|
||||||
<n-layout-content class="bg-transparent">
|
<n-layout-content class="bg-transparent h-full">
|
||||||
<div
|
<div
|
||||||
class="p-16px"
|
class="p-16px h-full"
|
||||||
:class="{
|
:class="{
|
||||||
'p-b-56px': appStore.fixedFooter,
|
'p-b-56px': appStore.fixedFooter,
|
||||||
'p-t-122px': appStore.fixedHeader && appStore.showTabs,
|
'p-t-122px': appStore.fixedHeader && appStore.showTabs,
|
||||||
|
9
src/views/docments/vite/index.vue
Normal file
9
src/views/docments/vite/index.vue
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<template>
|
||||||
|
<div class="h-full">
|
||||||
|
<iframe src="https://cn.vitejs.dev/guide/" frameborder="0" class="wh-full"></iframe>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts"></script>
|
||||||
|
|
||||||
|
<style scoped></style>
|
9
src/views/docments/vue/index.vue
Normal file
9
src/views/docments/vue/index.vue
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<template>
|
||||||
|
<div class="h-90vh">
|
||||||
|
<iframe src="https://staging-cn.vuejs.org/" frameborder="0" class="wh-full"></iframe>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts"></script>
|
||||||
|
|
||||||
|
<style scoped></style>
|
Loading…
x
Reference in New Issue
Block a user