Move WebConfigGenerator to /docs in master branch

This commit is contained in:
JustArchi
2018-03-01 04:34:24 +01:00
parent adbc6809c8
commit 4d2f1b789b
88 changed files with 17265 additions and 0 deletions

View 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
}
]
});