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

12 lines
243 B
Vue

<template>
<tiny-numeric v-model="value" :step="step"></tiny-numeric>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { Numeric as TinyNumeric } from '@opentiny/vue'
const value = ref(0)
const step = ref(2)
</script>