Тестовое приложение vue

This commit is contained in:
Book Pauk
2018-12-27 22:11:50 +07:00
parent 01a68b58c9
commit 6a83a09d33
4 changed files with 94 additions and 0 deletions

8
client/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')