tiny-vue/examples/sites/demos/pc/app/slider/range-select-composition-ap...

17 lines
275 B
Vue

<template>
<tiny-slider v-model="value"></tiny-slider>
</template>
<script setup>
import { ref } from 'vue'
import { Slider as TinySlider } from '@opentiny/vue'
const value = ref([20, 40])
</script>
<style scoped>
.tiny-slider-container {
margin-top: 50px;
}
</style>