Files
vant/docs/examples/dialog.md
2017-02-16 15:30:50 +08:00

916 B

<script> import { Dialog } from 'src/index'; export default { methods: { handleAlertClick() { Dialog.alert({ title: 'alert', message: 'alert message' }).then((action) => { console.log(action); }); }, handleConfirmClick() { Dialog.confirm({ title: 'confirm', message: 'confirm message' }).then((action) => { console.log(action); }, (error) => { console.log(error); }); } } }; </script>

Dialog组件

基础用法

:::demo

<o2-button @click="handleAlertClick">alert</o2-button>

<o2-button @click="handleConfirmClick">confirm</o2-button>

:::

API

参数 说明 类型 默认值 可选值
title 标题 String ''
message 内容 String ''