2020-03-04 23:11:15 +01:00
|
|
|
new Vue({
|
|
|
|
el: '#vue',
|
|
|
|
mixins: [windowMixin],
|
|
|
|
data: function () {
|
|
|
|
return {
|
2020-05-03 13:55:17 -03:00
|
|
|
disclaimerDialog: {
|
2020-04-20 15:27:02 +01:00
|
|
|
show: false,
|
|
|
|
data: {}
|
2020-05-03 13:55:17 -03:00
|
|
|
},
|
2020-03-04 23:11:15 +01:00
|
|
|
walletName: ''
|
2020-05-03 13:55:17 -03:00
|
|
|
}
|
2020-03-04 23:11:15 +01:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
createWallet: function () {
|
2020-05-03 13:55:17 -03:00
|
|
|
LNbits.href.createWallet(this.walletName)
|
2020-03-10 23:12:22 +01:00
|
|
|
},
|
|
|
|
processing: function () {
|
|
|
|
this.$q.notify({
|
|
|
|
timeout: 0,
|
|
|
|
message: 'Processing...',
|
|
|
|
icon: null
|
2020-05-03 13:55:17 -03:00
|
|
|
})
|
2020-03-04 23:11:15 +01:00
|
|
|
}
|
|
|
|
}
|
2020-05-03 13:55:17 -03:00
|
|
|
})
|