1234567891011121314151617181920212223242526272829303132333435 |
- export default {
- props: {
-
- name: {
- type: [String, Number, null],
- default: uni.$u.props.tabbarItem.name
- },
-
- icon: {
- icon: String,
- default: uni.$u.props.tabbarItem.icon
- },
-
- badge: {
- type: [String, Number, null],
- default: uni.$u.props.tabbarItem.badge
- },
-
- dot: {
- type: Boolean,
- default: uni.$u.props.tabbarItem.dot
- },
-
- text: {
- type: String,
- default: uni.$u.props.tabbarItem.text
- },
-
- badgeStyle: {
- type: [Object, String],
- default: uni.$u.props.tabbarItem.badgeStyle
- }
- }
- }
|