mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-27 12:08:49 +08:00
21 lines
523 B
Markdown
21 lines
523 B
Markdown
```html
|
|
<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>
|
|
``` |