import Vue from 'vue' import App from './App' new Vue({ el: '#app', render(h) { return h(App) } })