Web component compiler.
-
Idom instead of vdom — It no longer needs vdom, but a tree in memory, which is a technology of Angular ivy
-
Staic template optimization — This is a coarse-grained staic template optimization idea from vue3 block tree
-
Binary template - A fast parse scheme from glimmer.js
<script>
export default {
data: 0,
add() {
this.data++
}
}
</script>
<button @click={add} style={ padding: 10; margin: 10; }>{count}</button>