feat: range component

This commit is contained in:
vasu
2023-06-18 18:21:29 +05:30
parent 836ecffc85
commit 2bdfd9895c
6 changed files with 88 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<template>
<div>
<Range v-model="value" :steps="5" />
{{ value }}
</div>
</template>
<script setup>
import Range from '../../../../src/components/Range/Range.vue'
import { ref } from 'vue'
const value = ref(10)
</script>