Create main.js

This commit is contained in:
Steffen 2020-04-03 19:49:28 +02:00 committed by GitHub
parent f05908a57d
commit bdd1fc1dba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

11
main.js Normal file
View File

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