feat:设备使用记录

This commit is contained in:
houjunxiang
2026-03-05 16:54:47 +08:00
parent 749ac7f507
commit 9c88c45d66
357 changed files with 21486 additions and 5845 deletions

View File

@@ -82,10 +82,29 @@ export const props = defineMixin({
type: Boolean,
default: () => defProps.slider.useNative
},
// 滑块
// 滑块
height: {
type: String,
default: () => defProps.slider.height
},
innerStyle: {
type: Object,
default: () => defProps.slider.innerStyle
},
// 是否垂直方向
vertical: {
type: Boolean,
default: defProps.slider.vertical
},
// 滑块粗细为了支持垂直模式下统一粗细参数用size代替height。
size: {
type: [Number, String],
default: () => defProps.slider.size
},
// 滑块长度,水平和垂直模式的长度。
length: {
type: [Number, String],
default: 'auto'
}
}
})
})