21 lines
332 B
Vue
21 lines
332 B
Vue
<template>
|
|
<tiny-numeric v-model="stepNum" :step="step" :disabled="disabled"></tiny-numeric>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { Numeric } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyNumeric: Numeric
|
|
},
|
|
data() {
|
|
return {
|
|
step: 2,
|
|
stepNum: 1,
|
|
disabled: true
|
|
}
|
|
}
|
|
}
|
|
</script>
|