'打包0.11.0'

This commit is contained in:
街角小林
2024-08-26 15:06:22 +08:00
parent 474bbbf0fc
commit 9d64a508d6
15 changed files with 126 additions and 98 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

24
web/src/pages/Doc.vue Normal file
View File

@@ -0,0 +1,24 @@
T<template>
<div class="doc">
文档已迁移至<a href="https://wanglin2.github.io/mind-map-docs/">新地址</a>
</div>
</template>
<style lang="less" scoped>
.doc {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 20px;
a {
color: #1ea59a;
}
}
</style>

View File

@@ -4,15 +4,19 @@ import VueRouter from 'vue-router'
Vue.use(VueRouter)
const routes = [
{
path: '/',
name: 'Edit',
component: () => import(`./pages/Edit/Index.vue`)
{
path: '/',
name: 'Edit',
component: () => import(`./pages/Edit/Index.vue`)
},
{
path: '/index',
path: '/index',
redirect: '/'
},
{
path: '/doc/zh',
component: () => import(`./pages/Doc.vue`)
}
]
const router = new VueRouter({