Files
ui/docs/components/content/examples/RangeExample.vue
TomSmith27 97a1c86433 feat(Range): new component (#290)
Co-authored-by: Tom Smith <tom.smith2711@gmail.com>
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
Co-authored-by: Tom Smith <tom.smith@qunifi.com>
2023-06-21 19:09:11 +02:00

8 lines
100 B
Vue

<script setup>
const value = ref(50)
</script>
<template>
<URange v-model="value" />
</template>