mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
9 lines
164 B
Vue
9 lines
164 B
Vue
<script setup>
|
|
const value = ref(50)
|
|
</script>
|
|
|
|
<template>
|
|
<label for="range" class="sr-only" />
|
|
<URange id="range" v-model="value" name="range" />
|
|
</template>
|