wifictld-analyzer/webroot/js/main.js

15 lines
240 B
JavaScript
Raw Normal View History

2019-03-01 10:54:19 +01:00
const router = new VueRouter({
routes: [
{ path: '/', component: ViewAccessPoints }
]
})
VueNativeSock.default.install(Vue, `//${location.host}/ws`, {
store: store,
format: 'json',
})
const app = new Vue({
router
}).$mount('#app')