app.js (127B)
1 import Vue from 'vue'; 2 import App from "./App.vue"; 3 4 export const app = new Vue({ 5 el: "#app", 6 render: h => h(App), 7 });