0.0.4 • Published 5 years ago
zmg-toast v0.0.4
功能
- toast 组件 - dialog 组件
用法
- 安装依赖
npm install --save zmg-toast- 引入并使用
import UI from 'zmg-toast'
Vue.use(UI)toast
Props
| name | type | default | description |
|---|---|---|---|
| msg | String | '' | 弹窗提示语 |
| type | String | '' | 弹窗类型:success(成功提示),fail(失败提示),warning(警告),loading(加载) |
dialog
Props
| name | type | default | description |
|---|---|---|---|
| title | String | '' | 标题 |
| text | String | '' | 文本内容 |
| type | String | '' | 默认纯文本,input(输入框) |
| maxlength | Number | 20 | 输入的最多字数 |
| confirmText | String | 确定 | 右边按钮 |
| cancelText | String | 取消 | 左边按钮 |
Events
| name | params | description |
|---|---|---|
| confirm | null | 选择后的回调 |
| cancel | ull | 取消后的回调 |