UNPKG

ideaz-element

Version:

<p align="center"> <a href="" target="_blank" rel="noopener noreferrer"> <img src="./docs/public/logo.svg" alt="Ideaz Element" width="180" style="width: 180px;" /> </a> </p>

9 lines (7 loc) 296 B
import { Ref } from 'vue'; import { SelectProps } from '../props'; import { OptionsItem } from '../../../types'; export declare function useOptions(props: SelectProps, vModelVal: Ref<string[]>): { options: globalThis.ComputedRef<OptionsItem[]>; handleSelectInput: (val: any) => void; };