RiotJs 如何计算属性
RiotJs How to do computed properties
parent 在传递属性之前进行一些计算
<parent>
<child src={compute(opts.src)}></child>
</parent>
没用。
http://plnkr.co/edit/MguuodHHRlVytnikQKZ7?p=preview
如何实现?
它是 Web Component 中非常基本的 fixture。
RiotJS 将 opts 对象中的 src
属性 转换为名为 riotSrc
的 属性 因为在使用 src=""
时不允许非法服务器请求标签。
<child>
<div>This is the original property: {opts.origin}</div>
<div>This is the computed property: {opts.riotSrc}</div>
</child>
parent 在传递属性之前进行一些计算
<parent>
<child src={compute(opts.src)}></child>
</parent>
没用。
http://plnkr.co/edit/MguuodHHRlVytnikQKZ7?p=preview
如何实现?
它是 Web Component 中非常基本的 fixture。
RiotJS 将 opts 对象中的 src
属性 转换为名为 riotSrc
的 属性 因为在使用 src=""
时不允许非法服务器请求标签。
<child>
<div>This is the original property: {opts.origin}</div>
<div>This is the computed property: {opts.riotSrc}</div>
</child>