mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
35 lines
530 B
TypeScript
35 lines
530 B
TypeScript
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: '',
|
|
},
|
|
},
|
|
});
|