不理解render: h => h(App)的写法
来源:2-2 hello world
qq_漫漫_0
2019-06-17
import App from './App’
new Vue({
el: ‘#root’,
render: h => h(App)
})
和
import App from './App’
new Vue({
el: ‘#root’,
template: ‘’,
components: {
App
}
})
这两种写法是什么区别呀,查了文档看不懂,有的博客说两个是一样的作用,不明白render这个是干啥的
写回答
1回答
-
jsx 底层会被翻译成render函数
112019-06-21
相似问题