vue作用域插槽渲染列表
2020-04-24 本文已影响0人
赵羽珩
image.png
<template v-slot="scope">
{{scope.row}}
<div v-if="scope.row.stateId < 7">
拆分处理中
</div>
<div v-else-if="scope.row.stateId >= 7">
其他
</div>
</template>
image.png
<template v-slot="scope">
{{scope.row}}
<div v-if="scope.row.stateId < 7">
拆分处理中
</div>
<div v-else-if="scope.row.stateId >= 7">
其他
</div>
</template>