は、私はこのような何かをしたい:変数テンプレートを使用して再利用可能なUIを作成する方法は?
コンポーネントファイル:
<template name="drop_down">
<span class="dropdown">
{{> primary_element}} <--- load the template named button
<span class="dropdown-panel">
{{> panel_template}} <--- load the template named button_panel
</span>
</span>
</template>
用途:
{{> drop_down primary_element="button" panel_template="button_panel"}}
<template name="button"> some styled button </template>
<template name="button_panel"> panel content </template>
、その後、私はちょうどこの
{{> drop_down primary_element="tmp_btn_2" panel_template="tmp_panel_2"}}
<template name="tmp_btn_2"> another button style </template>
<template name="tmp_panel_2"> other panel content </template>
のようにそれを再利用することができます
それはデータ変数としてテンプレートに通ってくるだろう。 – corvid
どうすればいいですか? –