Fix invalid value warnings for textboxes

This commit is contained in:
adro 2023-10-31 22:40:15 +01:00
parent 76e6eb5af8
commit b3bfbefa5a

View file

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