mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 15:10:41 +01:00
19 lines
431 B
JavaScript
19 lines
431 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)
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
|