0
家長提出了一些計算傳承屬性RiotJs怎麼辦計算性能
<parent>
<child src={compute(opts.src)}></child>
</parent>
它不工作了。
http://plnkr.co/edit/MguuodHHRlVytnikQKZ7?p=preview
如何實現這一目標?
它是Web組件中非常基本的工具。
家長提出了一些計算傳承屬性RiotJs怎麼辦計算性能
<parent>
<child src={compute(opts.src)}></child>
</parent>
它不工作了。
http://plnkr.co/edit/MguuodHHRlVytnikQKZ7?p=preview
如何實現這一目標?
它是Web組件中非常基本的工具。
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>