123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- export default {
- props: {
-
- type: {
- type: String,
- default: uni.$u.props.tag.type
- },
-
- disabled: {
- type: [Boolean, String],
- default: uni.$u.props.tag.disabled
- },
-
- size: {
- type: String,
- default: uni.$u.props.tag.size
- },
-
- shape: {
- type: String,
- default: uni.$u.props.tag.shape
- },
-
- text: {
- type: [String, Number],
- default: uni.$u.props.tag.text
- },
-
- bgColor: {
- type: String,
- default: uni.$u.props.tag.bgColor
- },
-
- color: {
- type: String,
- default: uni.$u.props.tag.color
- },
-
- borderColor: {
- type: String,
- default: uni.$u.props.tag.borderColor
- },
-
- closeColor: {
- type: String,
- default: uni.$u.props.tag.closeColor
- },
-
- name: {
- type: [String, Number],
- default: uni.$u.props.tag.name
- },
-
-
-
-
-
-
- plainFill: {
- type: Boolean,
- default: uni.$u.props.tag.plainFill
- },
-
- plain: {
- type: Boolean,
- default: uni.$u.props.tag.plain
- },
-
- closable: {
- type: Boolean,
- default: uni.$u.props.tag.closable
- },
-
- show: {
- type: Boolean,
- default: uni.$u.props.tag.show
- },
-
- icon: {
- type: String,
- default: uni.$u.props.tag.icon
- }
- }
- }
|