16 lines
223 B
Vue
16 lines
223 B
Vue
<template>
|
|
<ToggleSwitch v-model="model" />
|
|
</template>
|
|
|
|
<script setup>
|
|
import ToggleSwitch from 'primevue/toggleswitch';
|
|
|
|
const model = defineModel({
|
|
default: false,
|
|
});
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|