mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-26 19:46:47 +08:00
523 B
523 B
<template>
<Wb-button v-tooltip :tooltip-option="option15">confirm模式</Wb-button>
</template>
<script>
export default {
data: function(){
option15: {
text: "确认删除吗?",
confirm: true,
onOk: function () {
this.$Toast("点击了确定")
},
onCancel: function () {
this.$Toast("点击了取消")
}
},
}
}
</script>