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