mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
8 lines
155 B
Vue
8 lines
155 B
Vue
<script setup>
|
|
const selected = ref(false)
|
|
</script>
|
|
|
|
<template>
|
|
<UCheckbox v-model="selected" name="notifications" label="Notifications" />
|
|
</template>
|