vuetify-多个模板插槽的插槽内容相同

时间:2019-11-11 21:37:32

标签: vuejs2 vuetify.js

什么是实现此概念的好方法: Same slot content for multiple template slots 在Vuetify中,即用于v-select

例如

<v-select>

    <template v-slot:item="data">

    </template>


    <template v-slot:selection="data">

    </template>

</v-select>

可以组合成一个吗?

// doesn't work
<template v-slot:slot_name="data" v-for="slot_name in ['item', 'selection']">

</template>

它对待itemselection的方式似乎与“常规”广告位项目不同。也就是说,我仍然希望每次都通过data,以便可以致电{{data.item.value}}等。

0 个答案:

没有答案