Skip to content

Instantly share code, notes, and snippets.

View jbieliauskas's full-sized avatar

Justas Bieliauskas jbieliauskas

View GitHub Profile
@jbieliauskas
jbieliauskas / checkbox-wrapper.js
Created April 3, 2019 20:28
Vue.js checkbox (single/multi) wrapper
const checkboxWrap = {
props: ['value', 'vModelValue'],
model: {
prop: 'vModelValue',
event: 'checkbox-updated'
},
data() {
return {
proxyResult: null
};