テーブルコンポーネントを作成しようとしています。VueJs:ダイナミックコンポーネントを別のコンポーネントに渡し、レンダリングします
グリッドの列メタデータを定義して渡し、配列propとして渡し、実際のデータを別の小道具としてグリッドに渡したいとします。
私はそれを多くの問題なしで達成することができました。
しかし、今は、セルがレンダリングされる方法(同じセルなどの編集削除ボタンを含むコンテンツ)をユーザーが定義/制御できるように、各列定義の一部として動的コンポーネントを渡したいと考えています。
動的コンポーネントを小道具として渡してからこのコンポーネントをレンダリングする方法はありますか?データソースのデータが
[
columns: [{
name: "something",
customComponent: SomeCustomComponent
}, {
name: "another thing",
customComponent: AnotherOtherCustomComponent
}]
]
ようなものになることができ
<parent-comp>
<tr class="" v-for="result in dataSource">
<template v-for="column in columns">
<td>
<template v-if="column.customComponent">
######## How do I render this customComponent ########
</template>
</td>
</template>
</tr>
</parent-comp>
上記尋ねるが明確でない場合は、この上の明確化/手の込んださせていただきます。
https://vuejs.org/v2/guide/components.html#Dynamic-Components – thanksd
@thanksdしかし私の場合、私は部品がに渡されますないだろう何、ありがとうparent-compが 'components'プロパティにリストされているコンポーネントを持っています – Chandu
コンポーネント定義を渡す必要はありません。 – Bert