Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
547 views
in Technique[技术] by (71.8m points)

v-slot定义动态的插槽名,如何与v-for结合?

<template v-slot:[rgums+index] v-for="(g,index) in gums">
    <div class="title">{{g}}</div>
</template>

上述代码 eslint 报错:

Elements in iteration expect to have 'v-bind:key' directives

这应该是 eslint 的bug了。

请问,这种情况该怎么解决?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Elements in iteration expect to have 'v-bind:key' directives
都提示需要key


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...