I am trying to understand how NativeScript-Vue works. While most of the tutorial codes make sense to me, this particular line in the following page seems to evade me.
https://nativescript-vue.org/en/docs/elements/components/frame/
The render function in VueJS seems to have different meaning. https://v2.vuejs.org/v2/guide/render-function.html
new Vue({
store,
render: h => h('frame', [h(App)])
}).$start()
I believe I have missed something obvious. Still if possible, please explain this line to me.