-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathAirBnbBox.vue
50 lines (47 loc) · 1.5 KB
/
AirBnbBox.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<template>
<CBox maxW="sm" border-width="1px" rounded="lg" overflow="hidden">
<CImage :src="property.imageUrl" :alt="property.imageAlt" />
<CBox p="6">
<CBox d="flex" align-items="baseline">
<CBadge rounded="full" px="2" variant-color="green">
New
</CBadge>
<CBox color="gray.500" font-weight="semibold" letter-spacing="wide" font-size="xs" text-transform="uppercase"
ml="2">
{{ property.beds }} beds • {{ property.baths }} baths
</CBox>
</CBox>
<CBox mt="1" font-weight="semibold" as="h4" line-height="tight" is-truncated>
{{ property.title }}
</CBox>
<CBox>
{{ property.formattedPrice }}
<CBox as="span" color="gray.600" fontSize="sm">
/ wk
</CBox>
</CBox>
<CBox d="flex" mt="2" align-items="center">
<CIcon v-for="(_, i) in Array(5).fill('')" name="star" :key="i"
:color="i < property.rating ? 'green.500' : 'gray.300'" />
<CBox as="span" ml="2" color="gray.600" font-size="sm">
{{ property.reviewCount }} reviews
</CBox>
</CBox>
</CBox>
</CBox>
</template>
<script setup>
import { reactive } from 'vue'
const property = reactive(
{
imageUrl: "https://bit.ly/2Z4KKcF",
imageAlt: "Rear view of modern home with pool",
beds: 3,
baths: 2,
title: "Modern home in city center in the heart of historic Los Angeles",
formattedPrice: "$1,900.00",
reviewCount: 34,
rating: 4,
}
)
</script>