International Telephone Input with Vue
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <script src="https://unpkg.com/vue"></script> <script src="https://unpkg.com/vue3-tel-input"></script> <link rel="stylesheet" href="https://unpkg.com/vue3-tel-input/dist/vue3-tel-input.css" /> </head> <body> <div id="app"> <vue-tel-input v-model:value="value"></vue-tel-input> </div> <script> const { ref } = Vue; const App = { setup() { const value = ref(null); return { value, }; }, }; const app = Vue.createApp(App); app.use(window['vue-tel-input']); app.mount('#app'); </script> </body> </html>
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by Vita-zzzxw and has received 1 comments.