admin管理员组文章数量:1344609
I have the current structure in my ponent:
<data-table>
<template slot="column" field="a"></template>
<template slot="column" field="b"></template>
<template slot="column" field="c"></template>
</data-table>
How do I iterate through these "columns" when rendering my data-table
?
Edit: turns out adding refs to my columns didn't work, since according to the docs the refs are only stored in their variable when the ponents are actually rendered. Instead, I used the $slots
variable to iterate over the columns on the mounted
method, like this:
mounted: function() {
this.$slots.column.forEach(
//my code...
);
}
I have the current structure in my ponent:
<data-table>
<template slot="column" field="a"></template>
<template slot="column" field="b"></template>
<template slot="column" field="c"></template>
</data-table>
How do I iterate through these "columns" when rendering my data-table
?
Edit: turns out adding refs to my columns didn't work, since according to the docs the refs are only stored in their variable when the ponents are actually rendered. Instead, I used the $slots
variable to iterate over the columns on the mounted
method, like this:
mounted: function() {
this.$slots.column.forEach(
//my code...
);
}
Share
Improve this question
edited Jan 29, 2019 at 11:59
Ayrton
asked Jan 25, 2019 at 19:38
AyrtonAyrton
2,3131 gold badge15 silver badges25 bronze badges
1
-
You could assign a
ref
to each of them vuejs/v2/guide/… (possibly not the best solution, but the first that came to mind), ie<template slot="column" field="a" ref="col_1"></template>
– admcfajn Commented Jan 25, 2019 at 19:46
3 Answers
Reset to default 9As mentioned, $ref
is the best approach to doing what you want. Use ref
carefully. It can get heavy on the user's machine.
// template
<data-table>
<template slot="column" field="a" ref="columns"></template>
<template slot="column" field="b" ref="columns"></template>
<template slot="column" field="c" ref="columns"></template>
</data-table>
// script
{
...
mounted() {
this.$refs.columns.forEach(col => {
// Do something with `col`
console.log(col)
})
}
}
Basically, if you have more than 1 ref
with an identical name (like 'columns'
), that reference will be converted to a VueComponent[]
(i.e. an array of vue ponents).
When you create slots, you can set dynamic names. Sample ponent:
<table>
<tr>
<td v-for="(slot,ind) in loopdata">
<slot :name="'col'+ind" :data="slot"></slot>
</td>
</tr>
</table>
then use slots:
<data-table>
<template slot="col1" slot-scope="{data}"></template>
<template slot="col2" slot-scope="{data}></template>
<template slot="col3" slot-scope="{data}></template>
</data-table>
Have you tried a v-for iteration when rendering your data-table
?, and create the columns based on a data property?
Such as:
<template v-for="(col,index) in columns" slot="col.column" field="col.a"></template>
本文标签: javascriptHow to iterate through the children of a Vue componentStack Overflow
版权声明:本文标题:javascript - How to iterate through the children of a Vue component - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743769422a2535845.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论