International Telephone Input with Vue 3
npm install vue3-telephone-inputangular2html
npm install --save vue3-telephone-input
`$3
#### Options API
`html
`#### Composition API
`html
`$3
#### If you need to change the color, size, border or background. You can override css variables.
`html
`#### For example:
`css
/ style.css file /.vue3-telephone-input {
/ Backgrounds /
--bg-input: rgb(244, 246, 250);
--bg-input-success: #f0fff0;
--bg-input-error: rgb(255, 245, 245);
/ Colors /
--color-input-text: #2a2a2a;
--color-input-success-text: #268f0d;
--color-input-error-text: #c24f41;
--color-input-border: #e3e3e3;
/ Border radius /
--border-radius-input: 6px;
/ Padding /
--padding-input: 2px 12px;
}
``