File tree 4 files changed +19
-207
lines changed
4 files changed +19
-207
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<div >
3
- <HeaderCom :name = " name " />
3
+ <HeaderCom />
4
4
<div style =" padding : 20px ; margin : 0 auto ; width : 960px " >
5
- <router-view / >
5
+ <slot ></ slot >
6
6
</div >
7
7
<FooterCom />
8
8
</div >
9
9
</template >
10
10
11
11
<script >
12
- import Header from ' ../components/ header' ;
12
+ import Header from ' ./ header/index.vue ' ;
13
13
import Footer from ' ./Footer.vue' ;
14
14
import NProgress from ' nprogress' ;
15
15
export default {
Original file line number Diff line number Diff line change @@ -172,6 +172,14 @@ const routes = [
172
172
{ path : '' , redirect : '/docs/vue/introduce/' } ,
173
173
] ,
174
174
} ,
175
+ {
176
+ path : '/theme-editor' ,
177
+ component : ( ) => import ( '../views/theme-editor/index.vue' ) ,
178
+ } ,
179
+ {
180
+ path : '/theme-editor-cn' ,
181
+ component : ( ) => import ( '../views/theme-editor/index.vue' ) ,
182
+ } ,
175
183
{ path : '/debugger' , component : ( ) => import ( '../../debugger' ) } ,
176
184
{ path : '/:lang(.*)' , redirect : '/components/overview' } ,
177
185
] ;
Original file line number Diff line number Diff line change
1
+ <template >
2
+ <layout >
3
+ <div style =" padding : 64px 0 ; text-align : center " >主题编辑器,即将上线,敬请期待</div >
4
+ </layout >
5
+ </template >
6
+ <script setup lang="ts">
7
+ import Layout from ' ../../layouts/BaseLayout.vue' ;
8
+ </script >
You can’t perform that action at this time.
0 commit comments