Skip to content

Instantly share code, notes, and snippets.

View bedus-creation's full-sized avatar
🎯
Focusing

Bedram Tamang bedus-creation

🎯
Focusing
View GitHub Profile
@bedus-creation
bedus-creation / CheckBox.vue
Created February 24, 2023 14:45 — forked from Jonarod/CheckBox.vue
Simple custom CheckBox component for Vue.js, compatible with v-model.
/**
* @usage:
*
* <CheckBox label="Foo" value="foo" v-model="MySelectedValues" />
* <CheckBox label="Bar" value="bar" v-model="MySelectedValues" />
* <CheckBox label="Baz" value="baz" v-model="MySelectedValues" />
*
* data(){
* return {
* MySelectedValues: [],