This commit is contained in:
2018-11-05 17:33:15 +00:00
parent 18d549f019
commit 6d746e15d1
46 changed files with 17363 additions and 0 deletions

15
app/ayanova/src/main.js Normal file
View File

@@ -0,0 +1,15 @@
import "@babel/polyfill";
import Vue from "vue";
import "./plugins/vuetify";
import App from "./App.vue";
import router from "./router";
import store from "./store";
import "./registerServiceWorker";
Vue.config.productionTip = false;
new Vue({
router,
store,
render: h => h(App)
}).$mount("#app");