mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-06-08 22:51:25 +08:00
30 lines
722 B
JavaScript
30 lines
722 B
JavaScript
const routes = [
|
|
{
|
|
path: '/configuration',
|
|
component: () => import('pages/ConfigurationPage.vue')
|
|
},
|
|
{
|
|
path: '/code',
|
|
component: () => import('pages/CodeRunner.vue')
|
|
},
|
|
{
|
|
path: '/newcommand',
|
|
component: () => import('pages/NewCommand.vue')
|
|
},
|
|
{
|
|
path: '/:type(default|files|key|regex|window|professional)_:uid(\\w{11})',
|
|
component: () => import('pages/CommandPage.vue')
|
|
},
|
|
{
|
|
path: '/panel_:tags(\\w+)',
|
|
component: () => import('pages/QuickPanel.vue')
|
|
},
|
|
{
|
|
path: '/needupdate/:version-:requiredversion',
|
|
component: () => import('pages/NeedUpdate.vue')
|
|
}
|
|
|
|
]
|
|
|
|
export default routes
|