An open API service indexing awesome lists of open source software.

https://github.com/ehsan-shv/vb-checkbox

Vue3 and Nuxt3 customizable checkbox input.
https://github.com/ehsan-shv/vb-checkbox

Last synced: about 1 month ago
JSON representation

Vue3 and Nuxt3 customizable checkbox input.

Awesome Lists containing this project

README

          

# vb-checkbox

Version

**Vue 3 checkbox component.**

> Support Vue3, Nuxt3 and type-safe. [Demo](https://ehsan-shv.github.io/vb-checkbox/)

## Installation

```bash
npm i vb-checkbox
```

## Import to component

```js


import { defineComponent, ref } from 'vue';
import Checkbox from 'vb-checkbox';

export default defineComponent({
components: {
Checkbox,
},
setup() {
const checked1 = ref(false);
const checked2 = ref(true);

return { check1, check2 };
},
});

```