mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-10 18:38:22 +00:00
Fix invalid value warnings for textboxes
This commit is contained in:
parent
76e6eb5af8
commit
b3bfbefa5a
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|
||||||
const props = defineModels<{
|
const props = defineModels<{
|
||||||
modelValue: string,
|
modelValue?: string,
|
||||||
}>();
|
}>();
|
||||||
let { modelValue } = $(props);
|
let { modelValue } = $(props);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue