summaryrefslogtreecommitdiff
path: root/electron/src/renderer/router
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2020-08-19 14:53:01 -0400
committerLex Neva <github.com@lexneva.name>2020-08-19 14:53:01 -0400
commit690ee0c416635f8d6d3dc07048be90bd0da7748f (patch)
tree8351dd7ffa0aee40e6409d29fda7577bf1f04a95 /electron/src/renderer/router
parent1631428ae44465ee96b7a283d7fec8cde1a68d73 (diff)
wip: move install extension to electron
Diffstat (limited to 'electron/src/renderer/router')
-rw-r--r--electron/src/renderer/router/index.js23
1 files changed, 14 insertions, 9 deletions
diff --git a/electron/src/renderer/router/index.js b/electron/src/renderer/router/index.js
index 3a27c4bc..63e2f415 100644
--- a/electron/src/renderer/router/index.js
+++ b/electron/src/renderer/router/index.js
@@ -5,14 +5,19 @@ Vue.use(Router)
export default new Router({
routes: [
- {
- path: '/simulator',
- name: 'simulator',
- component: require('@/components/Simulator').default
- },
- {
- path: '*',
- redirect: '/'
- }
+ {
+ path: '/simulator',
+ name: 'simulator',
+ component: require('@/components/Simulator').default
+ },
+ {
+ path: '/install',
+ name: 'install',
+ component: require('@/components/InstallPalettes').default
+ },
+ {
+ path: '*',
+ redirect: '/'
+ }
]
})