UNPKG

kui-vue

Version:

A lightweight desktop UI component library suitable for Vue.js 2.

46 lines (43 loc) 925 B
<cn> ### 自定义时长 可以自定义配置,其中 `duration` 来控制自动关闭时长,默认 `3s` </cn> ```vue <template> <Space vertical> <Button @click="config">10秒后关闭</Button> <Button @click="config2" type="primary">5秒后关闭</Button> <Button @click="config3" type="primary">手动关闭</Button> </Space> </template> <script setup> import { notice, message } from "kui-vue"; const config = () => { notice.open({ type: "success", duration: 10, title: "温馨提示", content: "10秒后关闭", }); }; const config2 = () => { notice.open({ type: "info", duration: 5, title: "温馨提示", content: "5秒后关闭", }); }; const config3 = () => { notice.open({ type: "info", duration: 0, title: "温馨提示", content: "手动关闭", onClose: () => { message.success("我是回调"); }, }); }; </script> ```