UNPKG

@wanghonggan/uv-ui

Version:

uv-ui 破釜沉舟之兼容vue3+2、nvue、app、h5、小程序等多端基于uni-app和uView2.x的生态框架,支持单独导入,开箱即用,利剑出击。

42 lines (41 loc) 950 B
import { getPropsByKey } from "../../libs/config/config"; export default { props: { // 显示的内容,字符串 text: { type: String, default: '' }, // 是否显示左侧的音量图标 icon: { type: [String, Boolean, null], default: 'volume' }, // 通告模式,link-显示右箭头,closable-显示右侧关闭图标 mode: { type: String, default: '' }, // 文字颜色,各图标也会使用文字颜色 color: { type: String, default: '#f9ae3d' }, // 背景颜色 bgColor: { type: String, default: '#fdf6ec' }, // 字体大小,单位px fontSize: { type: [String, Number], default: 14 }, // 水平滚动时的滚动速度,即每秒滚动多少px(rpx),这有利于控制文字无论多少时,都能有一个恒定的速度 speed: { type: [String, Number], default: 80 }, ...getPropsByKey('rowNotice') } }