Files
flowbite-vue/docs/components/range/examples/MinMaxRange.vue
2023-06-19 19:33:05 +05:30

13 lines
249 B
Vue

<template>
<div>
<Range v-model="value" label="Min-max range" :min="0" :max="10" />
</div>
</template>
<script setup>
import Range from '../../../../src/components/Range/Range.vue'
import { ref } from 'vue'
const value = ref(10)
</script>