tiny-vue/examples/sites/demos/pc/app/numeric/max-min.vue

22 lines
345 B
Vue

<template>
<tiny-numeric v-model="value" :step="step" :min="min" :max="max" circulate></tiny-numeric>
</template>
<script lang="ts">
import { Numeric } from '@opentiny/vue'
export default {
components: {
TinyNumeric: Numeric
},
data() {
return {
value: 0,
step: 2,
min: 0,
max: 10
}
}
}
</script>