Fix linter errors; add domain; add unit test support

This commit is contained in:
Niels Kooiman
2019-08-14 10:13:49 +02:00
parent 6f70ba29c9
commit 1b6fa67294
21 changed files with 628 additions and 29 deletions

View File

@@ -1,11 +1,12 @@
import Vue from 'vue';
import App from './App.vue';
import router from './router';
import './registerServiceWorker';
import Vue from "vue";
import App from "./App.vue";
import router from "./router";
import "./registerServiceWorker";
import "./wiring/Wiring";
Vue.config.productionTip = false;
new Vue({
router,
render: (h) => h(App),
}).$mount('#app');
}).$mount("#app");