mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-13 07:00:39 +00:00
Move WebConfigGenerator to /docs in master branch
This commit is contained in:
28
docs/WebConfigGenerator/src/router/index.js
Normal file
28
docs/WebConfigGenerator/src/router/index.js
Normal file
@@ -0,0 +1,28 @@
|
||||
import ASFConfig from '@/components/ASFConfig';
|
||||
import BotConfig from '@/components/BotConfig';
|
||||
import Home from '@/components/Home';
|
||||
|
||||
import Vue from 'vue';
|
||||
import Router from 'vue-router';
|
||||
|
||||
Vue.use(Router);
|
||||
|
||||
export default new Router({
|
||||
routes: [
|
||||
{
|
||||
path: '/',
|
||||
name: 'Home',
|
||||
component: Home
|
||||
},
|
||||
{
|
||||
path: '/asf',
|
||||
name: 'ASFConfig',
|
||||
component: ASFConfig
|
||||
},
|
||||
{
|
||||
path: '/bot',
|
||||
name: 'BotConfig',
|
||||
component: BotConfig
|
||||
}
|
||||
]
|
||||
});
|
||||
Reference in New Issue
Block a user