Disabling sliders (#51)

* Add disabled slider to omorphia

* lint
This commit is contained in:
Geometrically
2023-05-18 19:57:35 -07:00
committed by GitHub
parent b6a58ee845
commit 625511d28b
4 changed files with 20 additions and 3 deletions

View File

@@ -4,10 +4,12 @@
import { ref } from "vue";
const value = ref(0)
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"/>
</DemoContainer>
```vue