Add script for mounting the App component.
This commit is contained in:
parent
af3c7d9f91
commit
70e2f119cc
1 changed files with 9 additions and 0 deletions
9
src/main.js
Normal file
9
src/main.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import Vue from 'vue';
|
||||
import App from './App.vue';
|
||||
|
||||
Vue.config.productionTip = false;
|
||||
|
||||
// eslint-disable-next-line
|
||||
const app = new Vue({
|
||||
render: h => h(App),
|
||||
}).$mount('#app')
|
||||
Loading…
Add table
Add a link
Reference in a new issue