警告提示,展现需要关注的信息。
App(vue) | App(nvue) | H5 | 小程序 |
---|---|---|---|
√ | √ | √ | √ |
title
和description
设置组件的标题和描述内容type
设置主题类型,有primary
,success
,error
,warning
,info
可选值effect
设置主题浅或深色调,有light
(浅色 默认),dark
(深色)可选值<template>
<view>
<u-alert :title="title" type = "warning" :description = "description"></u-alert>
<u-alert :title="title" type = "warning" effect="dark" :description = "description"></u-alert>
</view>
</template>
<script>
export default {
data() {
return {
title:'uView的目标是成为uni-app生态最优秀的UI框架',
description:'uView是uni-app生态专用的UI框架'
};
},
onLoad() {},
methods: {
}
};
</script>
copy
通过showIcon
设置是否显示图标,作用是让信息类型更加醒目。
注意:当前版本图标为uView内置图标,根据type
参数显示不同的图标,无法自定义。
<u-alert type="warning" :show-icon="true"></u-alert>
copy
显示关闭按钮,点击可关闭警告提示。
closable
参数配置是否可关闭<template>
<view>
<u-alert :title="title" type = "warning" :closable="closable" :description = "description"></u-alert>
</view>
</template>
<script>
export default {
data() {
return {
title:'uView的目标是成为uni-app生态最优秀的UI框架',
description:'uView是uni-app生态专用的UI框架',
closable:true
};
},
onLoad() {},
methods: {
}
};
</script>