mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-20 02:28:10 +01:00
26 lines
437 B
JavaScript
26 lines
437 B
JavaScript
new Vue({
|
|
el: '#vue',
|
|
mixins: [windowMixin],
|
|
data: function () {
|
|
return {
|
|
disclaimerDialog: {
|
|
show: false,
|
|
data: {}
|
|
},
|
|
walletName: ''
|
|
}
|
|
},
|
|
methods: {
|
|
createWallet: function () {
|
|
LNbits.href.createWallet(this.walletName)
|
|
},
|
|
processing: function () {
|
|
this.$q.notify({
|
|
timeout: 0,
|
|
message: 'Processing...',
|
|
icon: null
|
|
})
|
|
}
|
|
}
|
|
})
|