feat: frontend component for LNURLs (#3321)

This commit is contained in:
dni ⚡
2025-08-19 11:18:02 +02:00
committed by GitHub
parent 609c949394
commit 1488f580ff
7 changed files with 94 additions and 29 deletions
-28
View File
@@ -187,34 +187,6 @@ window.app.component('lnbits-lnurlpay-success-action', {
}
})
window.app.component('lnbits-qrcode', {
mixins: [window.windowMixin],
template: '#lnbits-qrcode',
components: {
QrcodeVue
},
props: {
value: {
type: String,
required: true
},
options: Object
},
data() {
return {
custom: {
margin: 3,
width: 350,
size: 350,
logo: LNBITS_QR_LOGO
}
}
},
created() {
this.custom = {...this.custom, ...this.options}
}
})
window.app.component('lnbits-notifications-btn', {
template: '#lnbits-notifications-btn',
mixins: [window.windowMixin],