step-strictly.vue 165 B

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