0
0
Fork 0

Add script for mounting the App component.

This commit is contained in:
Tyler-A 2020-07-29 22:49:56 -06:00
parent af3c7d9f91
commit 70e2f119cc

9
src/main.js Normal file
View 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')