Reputation: 51
I'm trying add parent span for each slot on my component, but it isn't working.
render(createElement) {
return createElement('div', this.$slots.default.map(vnode => createElement('span', vnode)));
},
I want get html like below
<div>
<span><img /></span>
<span><img /></span>
<span><img /></span>
</div>
but max what i can get it is
<div>
<span>
<img />
<img />
<img />
</span>
</div>
how fix it?
Upvotes: 1
Views: 408