mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-10 18:38:22 +00:00
Make Numberbox convert to Number
This commit is contained in:
parent
09c1453669
commit
571ffd842b
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ let { modelValue, min, max } = $(props);
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<input type="number" v-model="modelValue" :min="min" :max="max">
|
||||
<input type="number" v-model.number="modelValue" :min="min" :max="max">
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
|
Loading…
Add table
Reference in a new issue