Skip to content

Range

Display a range field

Usage

Use a v-model to make the Range reactive.

vue
<script setup>
import {ref} from "vue";

const value = ref(50)
</script>

<template>
  <s-range v-model="value" />
</template>

Released under the MIT License.