vue-render函数

在main.js中,代码如下

import Vue from 'vue'
import App from './App.vue'

new Vue({
    router,
    render: h => h(App)
}).$mount('#app')