コンパイル前 --> <script setup> defineProps(["name"]); </script> <template> <h1> Hello {{ name }}! </h1> </template> // コンパイル後 ( 一部手で調整) const t0 = _template("<h1></h1>") function render(_ctx, $props) { const n0 = t0() _renderEffect(() => { _setText(n0, "Hello ", $props.name, "!") }) return n0 }