process of vueification

This commit is contained in:
Gator
2022-01-08 13:12:15 +01:00
parent 010c34b5a9
commit b2057d0244
19 changed files with 27723 additions and 183 deletions

8
src/main.js Normal file
View File

@ -0,0 +1,8 @@
import Vue from 'vue'
import App from './App.vue'
Vue.config.productionTip = false
new Vue({
render: h => h(App),
}).$mount('#app')