precision.vue 178 B

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