Appearance
Getting Started
Install the plugin:
shnpm install vue-tel-input
Add the plugin into your app:
javascriptimport Vue from 'vue'; import VueTelInput from 'vue-tel-input'; import 'vue-tel-input/vue-tel-input.css'; const app = createApp(App); app.use(VueTelInput); app.mount('#app');
Use the
vue-tel-input
component:html<template> <vue-tel-input v-model="phone"></vue-tel-input> </template>