解説

new Vue({
    data: {
        name: 'よそびー'
    },
    render: function (h) {
        return h('h1', 'こんにちは、' + this.name);
				🔼仮想ノードを作成してVueに渡した後に仮想DOMを作成している
    }
		or
		render: h => h('h1', 'こんにちは、' + this.name);
}).$mount('#app3')