v-phone-input
Version:
International phone field for Vuetify 3 and Vue 3.
10 lines (9 loc) • 336 B
TypeScript
import { VCountryProps } from './makeVCountryProps';
interface UseCountriesIconAttrsParams {
props: VCountryProps;
}
export default function useCountryIconAttrs({ props }: UseCountriesIconAttrsParams): {
role: import('vue').ComputedRef<"img" | undefined>;
title: import('vue').ComputedRef<string | undefined>;
};
export {};