PropertyFeatures.vue
2.65 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<script setup>
const props = defineProps({
formData: {
type: null,
required: true,
},
})
const emit = defineEmits(['update:formData'])
const formData = ref(props.formData)
watch(formData, () => {
emit('update:formData', formData.value)
})
</script>
<template>
<VForm>
<VRow>
<VCol
cols="12"
sm="6"
>
<!-- 👉 Bedrooms -->
<VTextField
v-model="formData.bedroomCount"
label="Bedrooms"
placeholder="3"
/>
</VCol>
<VCol
cols="12"
sm="6"
>
<!-- 👉 Floor No -->
<VTextField
v-model="formData.floorNo"
label="Floor No"
placeholder="12"
/>
</VCol>
<VCol
cols="12"
sm="6"
>
<!-- 👉 Bathrooms -->
<VTextField
v-model="formData.bathroomCount"
label="Bathroom"
placeholder="4"
/>
</VCol>
<VCol
cols="12"
sm="6"
>
<!-- 👉 Furnished Status -->
<VSelect
v-model="formData.furnishedStatus"
label="Furnished Status"
placeholder="Select Furnished Status"
:items="['Fully Furnished', 'Furnished', 'Semi-Furnished', 'Unfurnished']"
/>
</VCol>
<VCol cols="12">
<!-- 👉 Furnishing Details -->
<VSelect
v-model="formData.furnishingDetails"
label="Furnishing Details"
placeholder="Select Furnishing Details"
multiple
chips
closable-chips
:items="['TV', 'AC', 'RO', 'Bed', 'Fridge', 'Wi-Fi', 'Sofa', 'Cupboard', 'Microwave', 'Dining Table', 'Washing Machine']"
/>
</VCol>
<VCol
cols="12"
sm="6"
>
<!-- 👉 xCommon Area? -->
<VRadioGroup v-model="formData.isCommonArea1">
<template #label>
<div>
Is There Any Common Area?
</div>
</template>
<VRadio
label="Yes"
value="true"
/>
<VRadio
label="No"
value="false"
/>
</VRadioGroup>
</VCol>
<VCol
cols="12"
sm="6"
>
<!-- 👉 Common Area? -->
<VRadioGroup v-model="formData.isCommonArea2">
<template #label>
<div>
Is There Any Common Area?
</div>
</template>
<VRadio
label="Yes"
value="true"
/>
<VRadio
label="No"
value="false"
/>
</VRadioGroup>
</VCol>
</VRow>
</VForm>
</template>