Update Dependencies

This commit is contained in:
adro 2023-10-31 20:07:05 +01:00
parent 1f9c2d62df
commit 64206134ab
9 changed files with 1792 additions and 2264 deletions

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
const props = defineModel<{
const props = defineModels<{
modelValue: string,
}>();
let { modelValue } = $(props);

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
const props = defineModel<{
const props = defineModels<{
modelValue: number,
min?: number,
max?: number,

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
const props = defineModel<{
const props = defineModels<{
modelValue: string,
}>();
let { modelValue } = $(props);