20 lines
373 B
Vue
20 lines
373 B
Vue
<script setup lang="ts">
|
|
import PopoverItem from './PopoverItem.vue'
|
|
|
|
const value = defineModel<boolean>()
|
|
</script>
|
|
|
|
<template>
|
|
<PopoverItem
|
|
class="checkbox"
|
|
@click="value = !value"
|
|
>
|
|
<i :class="['bi', value ? 'bi-check-square' : 'bi-square']" />
|
|
<slot />
|
|
|
|
<template #after>
|
|
<slot name="after" />
|
|
</template>
|
|
</PopoverItem>
|
|
</template>
|