I am receiving the data from the cloud. I have looked at many questions in StackOverflow, but all of them were using the data in data()
. I am a super beginner in using Vue.js, so could not apply it in my code.
I would like to display the duplicate data only once in v-for
. In this case, {{item.matched_product.name}}
displays repeatedly.
<template slot-scope="scope">
<div v-if="scope.row.external_store.service_name == 'sellorder'">
<div
v-for="item in scope.row.items"
:key="item.id"
class="option-detail"
ref="option_variant"
>
<div v-if="item.matched_product">
<-- This is the part I want to display only once -->
<span style="font-weight:bold">
<i class="el-icon-caret-right"></i>
{{item.matched_product.name}}
</span>
<span>
<span
v-if="item.matched_variant">
{{item.matched_variant.options.map(obj => obj.value).join(' / ')}} {{item.qty}} / {{item.matched_variant.properties && item.matched_variant.properties.soldout ?
'(sold out)':''}}
</span>
<span v-else>No matching</span>
<el-button size="mini" round @click="matchProduct(scope.row,item)">Edit matching</el-button>
</span>
</div>
<div v-else>
<el-button size="mini" @click="matchProduct(scope.row,item)">Match</el-button>
</div>
</div>
</div>
</template>
What should I do?
I added below like @JoshBonnick mentinoed
and I put this code as well.
Now, this works fine.