File tree Expand file tree Collapse file tree 4 files changed +5
-8
lines changed Expand file tree Collapse file tree 4 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ import head from './head'
33import nav from './nav'
44import markdown from './markdown'
55import lang from './lang'
6-
7-
86const config = {
97 title : "Vue DevUI" ,
108 description : "Vue DevUI 组件库" ,
@@ -15,7 +13,7 @@ const config = {
1513 nav,
1614 demoblock : lang ,
1715 logo : '../../assets/logo.svg'
18- }
16+ } ,
1917} ;
2018
21- export default config ;
19+ export default config ;
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ defineEmits(['toggle'])
5252 <span style =" font-size :0.9rem ;" class =" mb-xxs" >{{ switchText }}</span >
5353 </div >
5454 <div style =" margin-left : 10px " @click =" () => useTranslation( defaultLanguage === 'zh-CN' ? 'en-US' : 'zh-CN' )" >
55- {{defaultLanguage === 'zh-CN' ? 'English ' : '中文 '}}
55+ {{defaultLanguage === 'zh-CN' ? '中文 ' : 'English '}}
5656 </div >
5757 </div >
5858
Original file line number Diff line number Diff line change @@ -3,11 +3,10 @@ import { useSideBar } from '../composables/sideBar'
33import { SideBarLink } from ' ./SideBarLink'
44
55const items = useSideBar ()
6-
76 </script >
87
98<template >
109 <ul v-if =" items.length > 0" class =" sidebar-links" >
1110 <SideBarLink v-for =" item of items" :item =" item" />
1211 </ul >
13- </template >
12+ </template >
Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ export default defineConfig({
1313 vueJsx ( { } ) ,
1414 svgLoader ( ) ,
1515 ] ,
16- } )
16+ } )
You can’t perform that action at this time.
0 commit comments