mirror of
https://github.com/paritytech/banana_split.git
synced 2026-09-12 19:51:03 +05:00
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.
25 lines
446 B
JavaScript
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");
|