added ws base code

This commit is contained in:
Tobias Kurze
2019-10-25 15:59:30 +02:00
parent 36c8e40622
commit dd7754e059
8 changed files with 350 additions and 173 deletions

View File

@@ -12,8 +12,10 @@ import Group from '@/components/Group.vue';
import Rooms from '@/components/Rooms.vue';
import Recorders from '@/components/Recorders.vue';
import Commands from '@/components/Commands.vue';
import Test from '@/components/Test.vue';
import store from '@/store';
Vue.use(Router);
export const router = new Router({
@@ -26,6 +28,11 @@ export const router = new Router({
name: 'home',
component: Home,
},
{
path: '/test',
name: 'test',
component: Test,
},
{
path: '/login',
name: 'login',