vue temp render 待编辑
Posted infaaf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue temp render 待编辑相关的知识,希望对你有一定的参考价值。
import App from ‘./App‘
new Vue({
el: ‘#root‘,
render: h => h(App)
})
// 写法2:
import App from ‘./App‘
new Vue({
el: ‘#root‘,
template: ‘<App></App>‘,
components: {
App
}
})
上面两种的效果是一样的,可以看出 h(App)函数 的作用是:使用App作为这个Vue实例的template(同时一并了注册App组件)
以上个
以上是关于vue temp render 待编辑的主要内容,如果未能解决你的问题,请参考以下文章