lnbits-legend/lnbits/core/static/js/index.js

22 lines
368 B
JavaScript
Raw Normal View History

new Vue({
el: '#vue',
mixins: [windowMixin],
data: function () {
return {
walletName: ''
};
},
methods: {
createWallet: function () {
LNbits.href.createWallet(this.walletName);
2020-03-10 23:12:22 +01:00
},
processing: function () {
this.$q.notify({
timeout: 0,
message: 'Processing...',
icon: null
});
}
}
});