悬浮出现在页面角落,显示全局的通知提醒消息。
# 基本用法
适用性广泛的通知栏
# 带有倾向性
带有 icon,常用来显示「成功、警告、消息、错误」类的系统消息
:::demo Element 为 Notification 组件准备了四种通知类型:success
, warning
, info
, error
。通过type
字段来设置,除此以外的值将被忽略。同时,我们也为 Notification 的各种 type 注册了方法,可以在不传入type
字段的情况下像open5
和open6
那样直接调用。
# 自定义弹出位置
可以让 Notification 从屏幕四角中的任意一角弹出
使用position
属性定义 Notification 的弹出位置,支持四个选项:top-right
、top-left
、bottom-right
、bottom-left
,默认为top-right
。