Slider and text input changes (#65)

This commit is contained in:
Adrian O.V
2023-06-10 12:18:15 -04:00
committed by GitHub
parent 01304e807a
commit cea5a18a7a
4 changed files with 42 additions and 10 deletions

View File

@@ -8,8 +8,8 @@ const valueTwo = ref(0)
</script>
<DemoContainer>
<Slider v-model="value" :min="1000" :max="10000" :step="1000"/>
<Slider v-model="valueTwo" :min="1000" :max="10000" :step="1000" :disabled="true"/>
<Slider v-model="value" :min="1000" :max="10000" :step="1000" unit="mb"/>
<Slider v-model="valueTwo" :min="1000" :max="10000" :step="1000" unit="mb" :disabled="true"/>
</DemoContainer>
```vue