dykj-football/uni_modules/uview-plus/components/u-divider/props.js
2024-04-17 15:27:43 +08:00

46 lines
1.2 KiB
JavaScript
Raw 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: {
// 是否虚线
dashed: {
type: Boolean,
default: () => defProps.divider.dashed
},
// 是否细线
hairline: {
type: Boolean,
default: () => defProps.divider.hairline
},
// 是否以点替代文字优先于text字段起作用
dot: {
type: Boolean,
default: () => defProps.divider.dot
},
// 内容文本的位置left-左边center-中间right-右边
textPosition: {
type: String,
default: () => defProps.divider.textPosition
},
// 文本内容
text: {
type: [String, Number],
default: () => defProps.divider.text
},
// 文本大小
textSize: {
type: [String, Number],
default: () => defProps.divider.textSize
},
// 文本颜色
textColor: {
type: String,
default: () => defProps.divider.textColor
},
// 线条颜色
lineColor: {
type: String,
default: () => defProps.divider.lineColor
}
}
}