mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 22:20:52 +00:00
25 lines
547 B
JavaScript
25 lines
547 B
JavaScript
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')
|
|
}
|
|
]
|
|
});
|