39 lines
882 B
Vue
39 lines
882 B
Vue
<template>
|
|
<div>
|
|
<tiny-popconfirm :title="title" :message="message" @show="show" @hide="hide" @confirm="confirm">
|
|
<template #reference>
|
|
<tiny-button>悬浮我提示</tiny-button>
|
|
</template>
|
|
</tiny-popconfirm>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
import { Popconfirm as TinyPopconfirm, Button as TinyButton, Modal } from '@opentiny/vue'
|
|
|
|
const title = ref('这是气泡标题')
|
|
const message = ref('这是气泡确认框提示内容文本描述,这是两行内容的展示样式,文本内容很长很长。')
|
|
|
|
function show() {
|
|
Modal.message({
|
|
status: 'info',
|
|
message: 'show事件触发了'
|
|
})
|
|
}
|
|
|
|
function hide() {
|
|
Modal.message({
|
|
status: 'info',
|
|
message: 'hide事件触发了'
|
|
})
|
|
}
|
|
|
|
function confirm() {
|
|
Modal.message({
|
|
status: 'info',
|
|
message: 'confirm事件触发了'
|
|
})
|
|
}
|
|
</script>
|