1 2 3 4 5 6 7 8 9
import Vue from 'vue'; import App from './App.vue'; window.onload = () => { new Vue({ el: '#app', render: h => h(App) }); }