15 lines
368 B
Vue
15 lines
368 B
Vue
<script lang="ts" setup>
|
|
import ChatButton from "~/components/product/ChatBox/ChatButton.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full flex flex-col">
|
|
<ProductHero />
|
|
<ProductVideo />
|
|
<ProductComments />
|
|
<ProductDetails />
|
|
<RelatedProducts title="محصولات مشابه" />
|
|
<ChatButton />
|
|
</div>
|
|
</template>
|