Fixed warning for MultilineTextBox

This commit is contained in:
adro 2023-11-03 18:37:11 +01:00
parent 871d3f2303
commit c74ba7b321

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