Alert 警告提示
概述
静态地呈现一些警告信息,可手动关闭。
使用指南
在 .json 中引入组件
"usingComponents": {
"i-alert": "../../dist/alert/index"
}
示例
<i-alert>
An info prompt
</i-alert>
<i-alert type="success">
An success prompt
</i-alert>
<i-alert type="warning">
An warning prompt
</i-alert>
<i-alert type="error">
An error prompt
</i-alert>
<i-alert>
An info prompt
<view slot="desc">Content of prompt. Content of prompt.</view>
</i-alert>
<i-alert type="success">
An success prompt
<view slot="desc">Content of prompt. Content of prompt.</view>
</i-alert>
<i-alert type="warning">
An warning prompt
<view slot="desc">Content of prompt. Content of prompt.</view>
</i-alert>
<i-alert type="error">
An error prompt
<view slot="desc">Content of prompt. Content of prompt.</view>
</i-alert>
<i-alert show-icon>
An info prompt
</i-alert>
<i-alert type="success" show-icon>
An success prompt
</i-alert>
<i-alert type="warning" show-icon>
An warning prompt
</i-alert>
<i-alert type="error" show-icon>
An error prompt
</i-alert>
<i-alert show-icon desc>
An info prompt
<view slot="desc">Content of prompt. Content of prompt.</view>
</i-alert>
<i-alert type="success" show-icon desc>
An success prompt
<view slot="desc">Content of prompt. Content of prompt.</view>
</i-alert>
<i-alert type="warning" show-icon desc>
An warning prompt
<view slot="desc">Content of prompt. Content of prompt.</view>
</i-alert>
<i-alert type="error" show-icon desc>
An error prompt
<view slot="desc">Content of prompt. Content of prompt.</view>
</i-alert>
<i-alert closable bind:close="handleClick">
An info prompt
</i-alert>
<i-alert type="success" show-icon desc closable bind:close="handleClick">
An success prompt
<view slot="desc">Content of prompt. Content of prompt.</view>
</i-alert>
API
Alert properties
属性 | 说明 | 类型 | 默认值 |
---|
i-class | 自定义 class 类名 | String | - |
type | 警告提示样式,可选值为 info、success、warning、error | String | info |
closable | 是否可关闭 | Boolean | false |
show-icon | 是否显示图标 | Boolean | false |
desc | 是否设置了 desc slot | Boolean | false |
Alert events
事件名 | 说明 | 返回值 |
---|
bind:close | 点击关闭按钮时触发 | - |
Alert slot