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