This commit is contained in:
mohadese namavar
2024-06-16 00:22:14 +04:30
commit ec84dfd222
322 changed files with 77942 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
<template>
<section class="product-other-sellers">
<h2>{{ $t("otherSellers") }}</h2>
<ul>
<li v-for="(item, i) in items" :key="i">
<OtherSellerItem />
</li>
</ul>
</section>
</template>
<script setup>
defineProps({
items: { type: Array, default: [{}, {}, {}] },
});
</script>
<style lang="scss">
.product-other-sellers {
@apply w-full flex flex-col gap-16 px-6;
& > h2 {
@apply text-[#0B1F11] text-3xl font-bold font-vazir;
}
& > ul {
@apply w-full flex flex-col gap-6;
}
}
</style>