Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 774 Bytes

File metadata and controls

28 lines (19 loc) · 774 Bytes

voe

Web component compiler.

还没写完,暂时放弃,未来重新开坑

Feature

  • 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

Use

<script>
  export default {
    data: 0,
    add() {
      this.data++
    }
  }
</script>

<button @click={add} style={ padding: 10; margin: 10; }>{count}</button>