Files
flowbite-vue/docs/components/checkbox/examples/CheckboxChecked.vue
Vasu Singh c3e8826253 feat(component): New checkbox component (#151)
* feat(component): New component checkbox

* feat(component): checkbox docs and link checkbox

* added gradient to home page

* remove unused props

* code refactor

* code refactor

* fix type error

* convert div to label
2023-06-16 16:20:45 +03:00

12 lines
244 B
Vue

<template>
<div>
<Checkbox v-model="ref3" label="Checked checkbox" />
</div>
</template>
<script setup>
import { ref } from 'vue'
import Checkbox from '../../../../src/components/Checkbox/Checkbox.vue'
const ref3 = ref(true)
</script>