lnbits-legend/lnbits/extensions/watchonly/static/components/my-checkbox/my-checkbox.js
2022-08-03 13:50:07 +03:00

16 lines
362 B
JavaScript

async function initMyCheckbox(path) {
const t = await loadTemplateAsync(path)
Vue.component('my-checkbox', {
name: 'my-checkbox',
template: t,
data() {
return {checked: false, title: 'Check me'}
},
methods: {
check() {
this.checked = !this.checked
console.log('### checked', this.checked)
}
}
})
}