UNPKG

@techie04/vue3-phonenumber-input

Version:
9 lines (7 loc) 211 B
import { App } from "vue"; import { PhoneInput } from "../components"; export const VuePhoneInput = { install(app: App): void { app.component(PhoneInput.name || "phone-input", PhoneInput); } };