@dated/transaction-export-plugin
Version:
Export your wallet transaction history
39 lines (34 loc) • 832 B
JavaScript
module.exports = {
template: `
<ModalConfirmation
container-classes="max-w-md"
title="Disclaimer"
note="The information presented by this plugin has been prepared for informational purposes only, and is not intended to provide, and should not be relied on for tax, legal or accounting advice."
cancel-button="Cancel"
continue-button="I understand"
="emitCancel"
="emitCancel"
="emitConfirm"
/>
`,
props: {
callback: {
type: Function,
required: true
}
},
methods: {
executeCallback (event) {
this.callback({
component: 'DisclaimerModal',
event
})
},
emitCancel () {
this.executeCallback('cancel')
},
emitConfirm () {
this.executeCallback('confirm')
}
}
}