v-phone-input
Version:
International phone field for Vuetify 3 and Vue 3.
17 lines (16 loc) • 427 B
TypeScript
import { Country } from '../types/countries';
import { PropType } from 'vue';
export interface VCountryProps {
country: Country;
decorative?: boolean;
}
export default function makeVCountryProps(): {
readonly country: {
readonly required: true;
readonly type: PropType<Country>;
};
readonly decorative: {
readonly type: BooleanConstructor;
readonly default: false;
};
};