我可以在vuejs循环中使用slot吗?

shstlldc  于 2023-10-23  发布在  Vue.js
关注(0)|答案(4)|浏览(124)

我有一个使用v-for循环的模板。在模板中,我有一个命名的插槽,其名称在循环中动态分配。没有内容出现,我做错了什么?

<todo-tabs :list="items">
    <div slot="interview">Interview</div>
    <div slot="membership">Membership</div>
    <div slot="profile">Profile</div>
    <div slot="handoff">Handoff</div>
</todo-tabs>

<template id="todo-tabs">
            <div class="tab-content ">      
                <div v-for="item in list" :class="{'active': item.current}" class="tab-pane" id="@{{ item.id }}">
                    <div class="skin skin-square">
                    <form class="form-horizontal" role="form">
                    <div class="form-body">
                        <slot name="@{{ item.id }}"></slot>
                    </div>
                    <div class="form-actions">
                        <button type="submit" class="btn red btn-outline">Submit</button>
                        <button type="button" class="btn default">Cancel</button>
                    </div>
                    </form>
                    </div>
                </div>
            </div>
        </template>

<script>
Vue.component('todo-tabs', {
        template: '#todo-tabs',
        props: ['list']
 });
 var vm = new Vue({
el: "#todo",
data: {
items : [
            {id: 'interview', name: 'interview', complete: true, body: 'something1', step_content: 'SOME'  },
            {id: 'membership', name: 'membership', complete: false, body: 'something2', step_content: 'SOME' },
            {id: 'profile', name: 'profile', complete: false, body: 'something3', step_content: 'SOME', current: true  },
            {id: 'handoff', name: 'handoff', complete: false, body: 'something4', step_content: 'SOME'}
        ]
    }
});
</script>
omtl5h9j

omtl5h9j1#

在VueJs 2.1.3版本中,你可以使用:
家长:

<div v-for="row in rows">
    <slot name="buttons" :row="row"></slot>
</div>

孩子们:

<template slot="buttons" scope="props">
    <a href="props.row.href">go there</a>
</template>

这种解释没有产生任何警告,因此我认为它是有效的。
https://v2.vuejs.org/v2/guide/components.html#Scoped-Slots

n1bvdmb6

n1bvdmb62#

在VueJS 1.0.16中,你可以在模板中这样做:

<div v-for="item in tiems">
    <slot :name="item.id"></slot>
</div>

然而,从1.0.17开始,VueJS抛出了这个错误:<slot :name="item.id">: slot names cannot be dynamic.

bvjveswy

bvjveswy3#

这可能值得与Evan(VueJS创建者)讨论,但我不认为slotname属性是React性的。我相信它只被当作一个字面量,并在模板编译之前进行评估。

moiiocjp

moiiocjp4#

当然,作为Vue 3,你可以使用动态插槽名称:
parent.vue

<template v-for="row in rows" :key="row.id" #[`example-${row.id}`]></template>

child.vue

<template v-for="row in rows" :key="row.id">
            <slot :name="`example-${row.id}`"></slot>
</template>

相关问题