Files
flowbite-vue/docs/components/range/examples/MinMaxRange.vue
2023-06-28 19:20:57 +03:00

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>