mirror of
http://123.56.153.49:3000/haibing/litemall.git
synced 2025-06-07 14:05:39 +00:00
34 lines
664 B
JavaScript
34 lines
664 B
JavaScript
![]() |
import { VantComponent } from '../common/component';
|
||
|
VantComponent({
|
||
|
props: {
|
||
|
dashed: {
|
||
|
type: Boolean,
|
||
|
value: false
|
||
|
},
|
||
|
hairline: {
|
||
|
type: Boolean,
|
||
|
value: false
|
||
|
},
|
||
|
contentPosition: {
|
||
|
type: String,
|
||
|
value: ''
|
||
|
},
|
||
|
fontSize: {
|
||
|
type: Number,
|
||
|
value: ''
|
||
|
},
|
||
|
borderColor: {
|
||
|
type: String,
|
||
|
value: ''
|
||
|
},
|
||
|
textColor: {
|
||
|
type: String,
|
||
|
value: ''
|
||
|
},
|
||
|
customStyle: {
|
||
|
type: String,
|
||
|
value: ''
|
||
|
}
|
||
|
}
|
||
|
});
|