使用template标签
<template v-for="(item, index) in links">
<el-link type="primary" target="_blank" :href="item.url" :key="index" v-if="item.category==0">
<el-button type="primary">{{item.name}}</el-button>
</el-link>
</template>
使用template标签
<template v-for="(item, index) in links">
<el-link type="primary" target="_blank" :href="item.url" :key="index" v-if="item.category==0">
<el-button type="primary">{{item.name}}</el-button>
</el-link>
</template>
本文标题:如何优雅的让v-for和v-if共同使用
本文链接:https://www.haomeiwen.com/subject/sdaicdtx.html
网友评论