banana_split/src/main.js
Kirill Pimenov e27865e53b
Fix linter issues
Now that the rules are much more pedantic there are quite some places
where we are inconsistent with codestyle; all security issues detected
were false positives, though.
2020-08-03 20:38:37 +02:00

25 lines
446 B
JavaScript

import Vue from "vue";
import VueQriously from "vue-qriously";
Vue.use(VueQriously);
import QrcodeStream from "vue-qrcode-reader";
Vue.use(QrcodeStream);
import App from "./App.vue";
import router from "./router";
import OnlinePlugin from "./plugins/online";
Vue.use(OnlinePlugin);
Vue.config.productionTip = false;
Vue.prototype.$eventHub = new Vue();
new Vue({
router,
render: function(h) {
return h(App);
}
}).$mount("#app");