Files
AstralRinth/docs/components/slider.md
2023-06-10 09:18:15 -07:00

466 B

Slider

<script setup> import { ref } from "vue"; const value = ref(0) const valueTwo = ref(0) </script>
<script setup>
import { ref } from "vue";

const value = ref(0)
</script>

<Slider v-model="value" :min="1000" :max="10000" :step="1000"/>