-
Notifications
You must be signed in to change notification settings - Fork 1.2k
版本变更记录
当耐特 edited this page Mar 28, 2019
·
12 revisions
新增 tag 方法,也支持装饰器声明标签名
如果 hash 为空,会自动被识别为 /
。
支持 static css
支持 static css
支持 createRef
修复在 JSCore 下的报错
修复在 node 下没有 Element 报错
renderToString 支持局部样式输出
修改 TypeScript 头文件
- 修复 props.children 嵌套组建的问题
- 增加 renderToString 方法
支持 css 直接传字符串
define('my-element', class extends WeElement {
css = `h1 { color: red; }`
render() {
return (
<h1>Hello, world!</h1>
)
}
})
支持 css 直接传字符串