Skip to content
On this page

对话框

基础用法

代码示例
js
<template>
    <pied-button click="handel">open</pied-button>
</template>

<script>
import { confirm } from 'pied-design-ui'
const handel = () => {
    confirm('标题', '我是一个内容', '取消', '确定')
}
</script>

Released under the MIT License.