dykj-outsource-12123/uni_modules/uview-plus/components/u-tabbar-item/props.js
2024-06-28 14:18:30 +08:00

37 lines
1.1 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import defProps from '../../libs/config/props.js';
export default {
props: {
// item标签的名称作为与u-tabbar的value参数匹配的标识符
name: {
type: [String, Number, null],
default: () => defProps.tabbarItem.name
},
// uView内置图标或者绝对路径的图片
icon: {
icon: String,
default: () => defProps.tabbarItem.icon
},
// 右上角的角标提示信息
badge: {
type: [String, Number, null],
default: () => defProps.tabbarItem.badge
},
// 是否显示圆点将会覆盖badge参数
dot: {
type: Boolean,
default: () => defProps.tabbarItem.dot
},
// 描述文本
text: {
type: String,
default: () => defProps.tabbarItem.text
},
// 控制徽标的位置对象或者字符串形式可以设置top和right属性
badgeStyle: {
type: [Object, String],
default: () => defProps.tabbarItem.badgeStyle
}
}
}