mirror of
https://github.com/speatzle/nfsense.git
synced 2025-09-13 15:19:08 +00:00
Update Dependencies
This commit is contained in:
parent
1f9c2d62df
commit
64206134ab
9 changed files with 1792 additions and 2264 deletions
|
@ -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: {
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<script setup lang="ts">
|
||||
|
||||
const props = defineModel<{
|
||||
const props = defineModels<{
|
||||
title: string,
|
||||
loading: boolean,
|
||||
columns?: {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<script setup lang="ts">
|
||||
|
||||
const props = defineModel<{
|
||||
const props = defineModels<{
|
||||
modelValue: string,
|
||||
}>();
|
||||
let { modelValue } = $(props);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<script setup lang="ts">
|
||||
|
||||
const props = defineModel<{
|
||||
const props = defineModels<{
|
||||
modelValue: number,
|
||||
min?: number,
|
||||
max?: number,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<script setup lang="ts">
|
||||
|
||||
const props = defineModel<{
|
||||
const props = defineModels<{
|
||||
modelValue: string,
|
||||
}>();
|
||||
let { modelValue } = $(props);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue