mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 22:20:52 +00:00
Upgrade webpack, remove service worker, other small optimizations
This commit is contained in:
24
WebConfigGenerator/src/router.js
Normal file
24
WebConfigGenerator/src/router.js
Normal file
@@ -0,0 +1,24 @@
|
||||
import Vue from 'vue';
|
||||
import Router from 'vue-router';
|
||||
|
||||
Vue.use(Router);
|
||||
|
||||
export default new Router({
|
||||
routes: [
|
||||
{
|
||||
path: '/',
|
||||
name: 'home',
|
||||
component: () => import('./components/Home.vue')
|
||||
},
|
||||
{
|
||||
path: '/asf',
|
||||
name: 'asf-config',
|
||||
component: () => import('./components/ASFConfig.vue')
|
||||
},
|
||||
{
|
||||
path: '/bot',
|
||||
name: 'bot-config',
|
||||
component: () => import('./components/BotConfig.vue')
|
||||
}
|
||||
]
|
||||
});
|
||||
Reference in New Issue
Block a user