<template>
<div>
<fish-button @click="popupHandler">Popup confirm</fish-button>
<fish-button @click="popup2Handler">Popup confirm2</fish-button>
</div>
</template>
<script>
export default {
methods: {
popupHandler (event) {
this.$popup.confirm(event, 'do you delete it?', () => {
console.log('OK....')
})
},
popup2Handler (event) {
this.$popup.confirm(event, 'do you delete it?', () => {
console.log('OK....')
}, 'Confirm', 'Cancel')
}
}
}
</script>
popup.confirm: (event, html, okFunc, okText = 'Yes', cancelText = 'No')| {{column}} |
|---|