side_menu/src/components/settings/form/FormYesNo.vue

12 lines
201 B
Vue

<template>
<NcCheckboxRadioSwitch
v-model="model"
type="switch"
/>
</template>
<script setup>
import { NcCheckboxRadioSwitch } from '@nextcloud/vue'
const model = defineModel()
</script>