mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-11 02:48:21 +00:00
17 lines
No EOL
288 B
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> |