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

17 lines
362 B
JavaScript
Raw Normal View History

2022-07-22 16:27:35 +03:00
async function initMyCheckbox(path) {
2022-07-22 18:01:47 +03:00
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)
}
}
})
2022-07-22 16:27:35 +03:00
}