新增 window.temporaryStore

This commit is contained in:
fofolee
2022-04-12 10:54:35 +08:00
parent 8df2305879
commit a02392d7b5
7 changed files with 52 additions and 24 deletions

View File

@@ -1,41 +1,46 @@
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