tiny-vue_version0/examples/sites/demos/pc/app/slider/max-min-composition-api.vue

11 lines
217 B
Vue

<template>
<tiny-slider v-model="value" :min="0" :max="100"></tiny-slider>
</template>
<script setup>
import { ref } from 'vue'
import { Slider as TinySlider } from '@opentiny/vue'
const value = ref(30)
</script>