10 lines
138 B

import Vue from "vue";
import App from "./App";
new Vue({
components: {
App
},
render: h => h(App)
}).$mount('#app')