This commit is contained in:
2023-10-18 12:03:56 +03:00
parent 2ae39a1bfb
commit 4fcaaf2803
16 changed files with 157 additions and 18 deletions

View File

@@ -1,7 +1,7 @@
<script lang="ts">
import type { TUiFiledWrapperProps } from './FieldWrapper.vue'
import type { TUiFieldWrapperProps } from './FieldWrapper.vue'
export type TUiFieldSelectProps = TUiFiledWrapperProps & {
export type TUiFieldSelectProps = TUiFieldWrapperProps & {
modelValue?: string | string[] | number | number[]
options?: { text: string; value: string | number }[]
multiple?: boolean