You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1017 B
JavaScript

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

export default {
props: {
color: {
type: String,
default: uni.$u.props.line.color
},
// 长度竖向时表现为高度横向时表现为长度可以为百分比带px单位的值等
length: {
type: [String, Number],
default: uni.$u.props.line.length
},
// 线条方向col-竖向row-横向
direction: {
type: String,
default: uni.$u.props.line.direction
},
// 是否显示细边框
hairline: {
type: Boolean,
default: uni.$u.props.line.hairline
},
// 线条与上下左右元素的间距,字符串形式,如"30px"、"20px 30px"
margin: {
type: [String, Number],
default: uni.$u.props.line.margin
},
// 是否虚线true-虚线false-实线
dashed: {
type: Boolean,
default: uni.$u.props.line.dashed
}
}
}