demo4.vue 158 B

123456789
  1. <template>
  2. <m-input-number v-model="num" :step="2" step-strictly />
  3. </template>
  4. <script setup>
  5. import { ref } from 'vue-demi'
  6. const num = ref(2)
  7. </script>