Make Numberbox convert to Number

This commit is contained in:
Samuel Lorch 2023-04-04 00:23:06 +02:00
parent 09c1453669
commit 571ffd842b

View file

@ -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>