4
由docs我不完全瞭解什麼時候應該使用render: h => h(App)
函數。當我應該使用渲染:h => h(App)?
例如,我有很簡單的Vue公司的應用程序:
import Vue from 'vue'
import App from './App.vue'
new Vue({
el: '#app',
components: { App }
})
是什麼,當我需要添加到代碼的情況:render: h => h(App)
?
您可以使用渲染功能來產生輸出爲標準VUE相同的,但你有渲染功能,因爲你有更多的控制和可以做的事情編程,你是不是更多的flexibilty能夠與標準vue – vbranden