mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
591 B
591 B
layout |
---|
templateLayout |
<template>
<span v-tooltip="option15">当鼠标经过这段文字时,会显示一个内容是询问的气泡框</span>
</template>
<script>
export default {
data(){
return {
option15: {
text: '确认删除吗?',
confirm: true,
onOk: function () {
_this.$Toast('点击了确定')
},
onCancel: function () {
_this.$Toast('点击了取消')
}
}
}
}
}
</script>