mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 07:07:48 +01:00
16 lines
362 B
JavaScript
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)
|
|
}
|
|
}
|
|
})
|
|
}
|