Create main.js

This commit is contained in:
Steffen 2020-04-03 19:56:10 +02:00 committed by GitHub
parent 9d207bbbe6
commit 2be8f85e6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

10
main.js Normal file
View File

@ -0,0 +1,10 @@
import Vue from 'vue'
import App from './App'
Vue.config.productionTip = false
new Vue({
el: '#app',
template: '<App/>',
components: { App }
})