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