nfsense/client/src/components/inputs/NumberBox.vue

17 lines
No EOL
288 B
Vue

<script setup lang="ts">
const props = defineModel<{
modelValue: number,
min?: number,
max?: number,
}>();
let { modelValue, min, max } = $(props);
</script>
<template>
<input type="number" v-model.number="modelValue" :min="min" :max="max">
</template>
<style scoped>
</style>