Files
ui/devtools/app/components/inputs/NumberInput.vue
2024-12-23 12:13:37 +01:00

16 lines
375 B
Vue

<script lang="ts">
import * as z from 'zod'
export const numberInputSchema = z.literal('number')
export type NumberInputSchema = z.infer<typeof numberInputSchema>
</script>
<script setup lang="ts">
defineProps<{ schema: NumberInputSchema }>()
const modelValue = defineModel<number>()
</script>
<template>
<UInput v-model.number="modelValue" type="number" />
</template>