123456789101112131415161718192021222324252627282930313233 |
- export default {
- props: {
- color: {
- type: String,
- default: uni.$u.props.line.color
- },
-
- length: {
- type: [String, Number],
- default: uni.$u.props.line.length
- },
-
- direction: {
- type: String,
- default: uni.$u.props.line.direction
- },
-
- hairline: {
- type: Boolean,
- default: uni.$u.props.line.hairline
- },
-
- margin: {
- type: [String, Number],
- default: uni.$u.props.line.margin
- },
-
- dashed: {
- type: Boolean,
- default: uni.$u.props.line.dashed
- }
- }
- }
|