18 lines
385 B
Vue
Raw Normal View History

<script setup name="TestDialog">
2022-01-08 17:20:46 +08:00
const handleDelete = function () {
$dialog.confirm({
content: '确认删除?',
confirm() {
$dialog.success('删除成功', { positiveText: '我知道了' })
},
cancel() {
$dialog.warning('已取消', { closable: true })
},
})
}
</script>
<template>
<n-button @click="handleDelete">删除</n-button>
</template>