• 1.7.0 8770c32e5b

    v1.7.0 Stable

    yutent released this 2023-03-27 16:13:46 +08:00 | 73 commits to master since this release

    • 增加classMapstyleMap 2个函数
    
    let classes = classMap({
        foo: true,
        bar: this.bar,
        ['goo-' + this.id]: true
    })
    let styles = styleMap({
        width: '888px',
        height: '200px',
        backgroundColor: '#f30'
      })
    
    let output = html`
      <div class=${classes} style=${styles}>demo</div>
    `
    
    
    
    Downloads
     
  • 1.6.0 7568e701cf

    v1.6.0 Stable

    yutent released this 2023-03-24 16:45:39 +08:00 | 74 commits to master since this release

    • 增加事件自动销毁机制
    Downloads
     
  • 1.5.14 f7e0ce08c3

    v1.5.14 Stable

    yutent released this 2023-03-24 11:29:39 +08:00 | 75 commits to master since this release

    • 修复noop未定义的bug
    • 优化代码,减少一些不必须的symbol
    Downloads
     
  • 1.5.13 9641f5b82a

    Stable

    yutent released this 2023-03-23 11:50:28 +08:00 | 77 commits to master since this release

    • 修复ref解析部分缺失的bug
    Downloads
     
  • 1.5.12 9b76cfa141

    v1.5.12 Stable

    yutent released this 2023-03-23 11:17:55 +08:00 | 78 commits to master since this release

    • 修复组件内组件的mounted不触发的bug
    Downloads
     
  • 1.5.11 f397c57c37

    v1.5.11 Stable

    yutent released this 2023-03-22 18:56:14 +08:00 | 79 commits to master since this release

    • 修复1.5.10的bug
    Downloads
     
  • 1.5.10 c416622f72

    v1.5.10 Stable

    yutent released this 2023-03-22 18:49:46 +08:00 | 80 commits to master since this release

    • 修复ref解析丢失的bug
    Downloads
     
  • 1.5.9 7669b3b713

    v1.5.9 Stable

    yutent released this 2023-03-21 23:06:40 +08:00 | 81 commits to master since this release

    • 修复因兼容vue二次渲染引起的bug
    Downloads
     
  • 1.5.8 886829f44d

    v1.5.8 Stable

    yutent released this 2023-03-21 18:23:13 +08:00 | 83 commits to master since this release

    • 增加默认render
    • 优化渲染机制,避免在vue下被渲染2次
    Downloads
     
  • 1.5.7 310e2bff1e

    v1.5.7 Stable

    yutent released this 2023-03-21 16:46:53 +08:00 | 84 commits to master since this release

    • 内置组件注册方法
    class Foo extends Component { }
    
    Foo.reg('foo') // will register a elem with prefix 'wc-'
    
    // how to use
    <wc-foo></wc-foo>
    
    
    Downloads