@nuxt/ui-pro
Version:
Ship beautiful web applications at the speed of light with Nuxt UI Pro.
15 lines (14 loc) • 850 B
TypeScript
import type { SelectMenuProps, Locale } from '@nuxt/ui';
export interface LocaleSelectProps extends /** @vue-ignore */ Pick<SelectMenuProps<any>, 'color' | 'variant' | 'size' | 'trailingIcon' | 'selectedIcon' | 'content' | 'arrow' | 'portal' | 'disabled' | 'ui'> {
locales?: Locale<any>[];
}
declare const _default: import("vue").DefineComponent<LocaleSelectProps & {
modelValue?: string;
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"update:modelValue": (value: string | undefined) => any;
}, string, import("vue").PublicProps, Readonly<LocaleSelectProps & {
modelValue?: string;
}> & Readonly<{
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;