refactor(multi): updated to latest version

This commit is contained in:
yagnikvamja
2025-01-01 17:21:49 +05:30
parent 3297275812
commit 8ba9732f4e
41 changed files with 17350 additions and 13186 deletions

View File

@@ -62,13 +62,22 @@ const selectedNotification = ref('Only when I\'m online')
{{ device.type }}
</td>
<td>
<VCheckbox v-model="device.email" />
<VCheckbox
:id="useId()"
v-model="device.email"
/>
</td>
<td>
<VCheckbox v-model="device.browser" />
<VCheckbox
:id="useId()"
v-model="device.browser"
/>
</td>
<td>
<VCheckbox v-model="device.app" />
<VCheckbox
:id="useId()"
v-model="device.app"
/>
</td>
</tr>
</tbody>
@@ -87,6 +96,7 @@ const selectedNotification = ref('Only when I\'m online')
sm="6"
>
<VSelect
:id="useId()"
v-model="selectedNotification"
mandatory
:items="['Only when I\'m online', 'Anytime']"