Compiler: intro
https://ubugeeei.github.io/chibivue/10-minimum-example/060-minimum-template-compiler.html#実はここまでで動作に必要なものは揃った
ここまでで動作に必要なものは揃った
Reactivity System
Virtual Dom
Component
ここからはDXを良くしていく
いくつかStepはあるが、まずは
code: main.ts
const app = createApp({ template: <p class="hello">Hello World</p> })
のように書けるようにする
といっても上記のコードを
code: main.ts
const app = createApp({
render() {
return h('p', { class: 'hello' }, 'Hello World')
},
})
の従来のかたちに翻訳(コンパイル)するだけ