-
v1.7.0 Stable
released this
2023-03-27 16:13:46 +08:00 | 73 commits to master since this release- 增加
classMap
和styleMap
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
- 增加
-
v1.6.0 Stable
released this
2023-03-24 16:45:39 +08:00 | 74 commits to master since this release- 增加事件自动销毁机制
Downloads
-
v1.5.14 Stable
released this
2023-03-24 11:29:39 +08:00 | 75 commits to master since this release- 修复noop未定义的bug
- 优化代码,减少一些不必须的symbol
Downloads
-
released this
2023-03-23 11:50:28 +08:00 | 77 commits to master since this release- 修复ref解析部分缺失的bug
Downloads
-
v1.5.12 Stable
released this
2023-03-23 11:17:55 +08:00 | 78 commits to master since this release- 修复组件内组件的mounted不触发的bug
Downloads
-
v1.5.11 Stable
released this
2023-03-22 18:56:14 +08:00 | 79 commits to master since this release- 修复1.5.10的bug
Downloads
-
v1.5.10 Stable
released this
2023-03-22 18:49:46 +08:00 | 80 commits to master since this release- 修复ref解析丢失的bug
Downloads
-
v1.5.9 Stable
released this
2023-03-21 23:06:40 +08:00 | 81 commits to master since this release- 修复因兼容vue二次渲染引起的bug
Downloads
-
v1.5.8 Stable
released this
2023-03-21 18:23:13 +08:00 | 83 commits to master since this release- 增加默认render
- 优化渲染机制,避免在vue下被渲染2次
Downloads
-
v1.5.7 Stable
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