小さいテンプレードコンパイラ
https://ubugeeei.github.io/chibivue/10-minimum-example/060-minimum-template-compiler.html#小さいテンプレートコンパイラ[Compiler: intro][Compiler: 実装アプローチ][Compiler: 実装]
const app = createApp({ template: `<p class="hello">Hello World</p>` })
const app = createApp({
render() {
return h('p', { class: 'hello' }, ['Hello World'])
},
})