1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- export default {
- props: {
-
- dashed: {
- type: Boolean,
- default: uni.$u.props.divider.dashed
- },
-
- hairline: {
- type: Boolean,
- default: uni.$u.props.divider.hairline
- },
-
- dot: {
- type: Boolean,
- default: uni.$u.props.divider.dot
- },
-
- textPosition: {
- type: String,
- default: uni.$u.props.divider.textPosition
- },
-
- text: {
- type: [String, Number],
- default: uni.$u.props.divider.text
- },
-
- textSize: {
- type: [String, Number],
- default: uni.$u.props.divider.textSize
- },
-
- textColor: {
- type: String,
- default: uni.$u.props.divider.textColor
- },
-
- lineColor: {
- type: String,
- default: uni.$u.props.divider.lineColor
- }
- }
- }
|