tiny-vue_version0/examples/sites/demos/pc/app/numeric/about-step.vue

20 lines
284 B
Vue

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