26 lines
671 B
Vue
26 lines
671 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full h-screen p-8 flex gap-8 justify-start items-start">
|
|
<Product
|
|
brand="Samsung"
|
|
title="Galaxy S20 Ultra"
|
|
picture="/assets/img/product-1.jpg"
|
|
:colors="['#0000ff', '#00ff00','red']"
|
|
:price="599"
|
|
:rate="2.4"
|
|
tag="New"
|
|
/>
|
|
<Product
|
|
brand="Samsung"
|
|
title="Galaxy S20 Ultra"
|
|
picture="/assets/img/product-1.jpg"
|
|
:colors="['#0000ff', '#00ff00','red']"
|
|
:price="599"
|
|
:rate="2.4"
|
|
tag="New"
|
|
/>
|
|
</div>
|
|
</template> |