Refactored client side with vue cli

This commit is contained in:
ori agranat
2019-03-10 22:29:29 +02:00
parent 1444234398
commit 9ba9228b32
1620 changed files with 11875 additions and 135430 deletions

View File

@@ -0,0 +1,14 @@
import Vue from 'vue'
import App from './App.vue'
import VueRouter from 'vue-router'
import iView from 'iview';
import 'iview/dist/styles/iview.css'
Vue.use(VueRouter);
Vue.use(iView);
Vue.config.productionTip = false
new Vue({
render: h => h(App)
}).$mount('#app')