web_ppt / frontend /src /components /CheckboxButton.vue
CatPtain's picture
Upload 339 files
89ce340 verified
raw
history blame
342 Bytes
<template>
<Button
:checked="checked"
:disabled="disabled"
type="checkbox"
>
<slot></slot>
</Button>
</template>
<script lang="ts" setup>
import Button from './Button.vue'
withDefaults(defineProps<{
checked?: boolean
disabled?: boolean
}>(), {
checked: false,
disabled: false,
})
</script>