我可以在 vuejs 循环中使用插槽吗?
Can I use slot in a vuejs loop?
我有一个使用 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>
可能值得与 Evan(VueJS 创建者)讨论,但我不认为 slot
的 name
属性是反应性的。我相信它仅被视为文字并在编译模板之前进行评估。
在 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.
在 VueJs 2.1.3 版本中你可以使用这个:
parent:
<div v-for="row in rows">
<slot name="buttons" :row="row"></slot>
</div>
child:
<template slot="buttons" scope="props">
<a href="props.row.href">go there</a>
</template>
这个构造不会产生任何警告,因此我认为它是有效的。
我有一个使用 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>
可能值得与 Evan(VueJS 创建者)讨论,但我不认为 slot
的 name
属性是反应性的。我相信它仅被视为文字并在编译模板之前进行评估。
在 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.
在 VueJs 2.1.3 版本中你可以使用这个:
parent:
<div v-for="row in rows">
<slot name="buttons" :row="row"></slot>
</div>
child:
<template slot="buttons" scope="props">
<a href="props.row.href">go there</a>
</template>
这个构造不会产生任何警告,因此我认为它是有效的。