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,7 +1,7 @@
<script setup lang="ts">
import { useForm } from 'vee-validate';
const props = defineModel<{
const props = defineModels<{
title?: string
validationSchema?: Record<string, string | Function>,
sections: {

View file

@ -4,7 +4,7 @@ import { useKeyModifier } from '@vueuse/core';
const shiftState = $(useKeyModifier('Shift'));
const ctrlState = $(useKeyModifier('Control'));
const props = defineModel<{
const props = defineModels<{
columns?: {
heading: string,
path: string,

View file

@ -1,6 +1,6 @@
<script setup lang="ts">
const props = defineModel<{
const props = defineModels<{
title: string,
loading: boolean,
columns?: {

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