Alert 提示
用于页面中展示重要的提示信息。
基础用法
提示分别有4种状态,可通过设置type
来改变状态,分别为primary
,success
,warning
,danger
,不设置为default
html
<os-alert
type="success">
success的提示信息</os-alert>
图标
可通过属性show-icon
设置为true,即可显示前缀图标。
属性show-close
设置为true,会显示关闭图标,因为非浮层组件不会自动关闭,需要结合方法close
进行隐藏。
带标题的提示
属性title
能设置提示标题,slot为title也同样能工作。
html
<os-alert
title="Success"
type="success">
success的提示信息</os-alert>