first add files

This commit is contained in:
2025-08-15 14:05:08 +08:00
parent c58f74bcc0
commit b6216570d9
2451 changed files with 29056 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
Component({
data: {
marks: {
0: '0',
20: '20',
40: '40',
60: '60',
80: '80',
100: '100',
},
},
});

View File

@@ -0,0 +1,6 @@
{
"component": true,
"usingComponents": {
"t-slider": "tdesign-miniprogram/slider/slider"
}
}

View File

@@ -0,0 +1,9 @@
<t-slider value="{{35}}" disabled />
<view class="wrapper">
<t-slider show-extreme-value label="${value}" value="{{ [40, 60] }}" range disabled />
</view>
<view class="wrapper">
<t-slider range value="{{ [20, 60] }}" marks="{{marks}}" step="{{20}}" disabled />
</view>

View File

@@ -0,0 +1,5 @@
.wrapper {
margin-top: 32rpx;
background: var(--bg-color-demo);
padding: 40rpx 12rpx 0;
}