lnbits-legend/lnbits/extensions/watchonly/static/components/my-checkbox/my-checkbox.js

19 lines
431 B
JavaScript
Raw Normal View History

2022-07-22 16:27:35 +03:00
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)
}
}
});
}