改用相对路径

This commit is contained in:
liaoxuezhi 2019-06-05 10:36:17 +08:00
parent a7a4cbea08
commit 0ff96c1bb4
2 changed files with 6 additions and 6 deletions

View File

@ -10,18 +10,18 @@ export default {
{
label: '选项卡1',
icon: 'fa fa-cloud',
to: '/examples/tabs/tab1'
to: './tab1'
},
{
label: '选项卡2',
to: '/examples/tabs/tab2'
to: './tab2'
},
{
label: '选项卡3',
icon: 'fa fa-youtube',
to: '/examples/tabs/tab3'
to: './tab3'
}
]
},

View File

@ -10,18 +10,18 @@ export default {
{
label: '选项卡1',
icon: 'fa fa-cloud',
to: '/examples/tabs/tab1'
to: './tab1'
},
{
label: '选项卡2',
to: '/examples/tabs/tab2'
to: './tab2'
},
{
label: '选项卡3',
icon: 'fa fa-youtube',
to: '/examples/tabs/tab3'
to: './tab3'
}
]
},