完成面板视图

This commit is contained in:
fofolee
2022-04-13 00:49:49 +08:00
parent 261aafacce
commit 3cd46df1d7
9 changed files with 121 additions and 42 deletions

View File

@@ -2,45 +2,45 @@ const routes = [{
path: '/configuration',
name: 'configuration',
component: () =>
import('pages/ConfigurationPage.vue')
import ('pages/ConfigurationPage.vue')
},
{
path: '/code',
name: 'code',
component: () =>
import('pages/RunCodePage.vue')
import ('pages/RunCodePage.vue')
},
{
path: '/newcommand',
component: () =>
import('pages/NewCommand.vue')
import ('pages/NewCommand.vue')
},
{
path: '/:type(default|files|img|key|regex|window|professional)_:uid(\\w+)',
name: 'command',
component: () =>
import('pages/CommandPage.vue')
import ('pages/CommandPage.vue')
},
{
path: '/panel_:tags(\\w+)',
name: 'panel',
component: () =>
import('pages/ConfigurationPage.vue')
import ('pages/ConfigurationPage.vue')
},
{
path: '/needupdate',
name: 'needupdate',
props: true,
component: () =>
import('pages/updateWarningPage.vue')
import ('pages/updateWarningPage.vue')
},
{
path: '/loading',
name: 'loading',
component: () =>
import('pages/LoadingPage.vue')
import ('pages/LoadingPage.vue')
}
]
export default routes
export default routes