{"id":19312003,"url":"https://github.com/weblineindia/vue-email","last_synced_at":"2026-07-18T10:34:31.678Z","repository":{"id":129985134,"uuid":"274404320","full_name":"weblineindia/Vue-Email","owner":"weblineindia","description":"A Vue.js email component provides single/multiple input email field with validation.","archived":false,"fork":false,"pushed_at":"2023-12-27T08:03:57.000Z","size":85,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-07T14:14:20.494Z","etag":null,"topics":["email-components","vue","vue-component","vue-component-library","vue-components","vue-email-component","vue-plugin","vue-plugins","vuecomponent","vuecomponents","vuejs","vuejs-components","vuejs-email-component","vuejs-library","vuejs-plugin","vuejs-snippets"],"latest_commit_sha":null,"homepage":"https://www.weblineindia.com/communities.html","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/weblineindia.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2020-06-23T12:49:33.000Z","updated_at":"2023-12-27T08:03:42.000Z","dependencies_parsed_at":"2023-12-27T09:23:54.401Z","dependency_job_id":"ffeb26ea-de73-4c82-9868-3690d2cce9b4","html_url":"https://github.com/weblineindia/Vue-Email","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FVue-Email","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FVue-Email/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FVue-Email/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/weblineindia%2FVue-Email/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/weblineindia","download_url":"https://codeload.github.com/weblineindia/Vue-Email/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240415216,"owners_count":19797599,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["email-components","vue","vue-component","vue-component-library","vue-components","vue-email-component","vue-plugin","vue-plugins","vuecomponent","vuecomponents","vuejs","vuejs-components","vuejs-email-component","vuejs-library","vuejs-plugin","vuejs-snippets"],"created_at":"2024-11-10T00:32:06.048Z","updated_at":"2025-10-24T11:51:22.625Z","avatar_url":"https://github.com/weblineindia.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vue Email Component\n\nA Vue.js email component provides single/multiple input email field with validation.\nThe email value is automatically validated on blur event.\nYou can change validation message using props.\nYou can also disable email field using disable props.\n\n\n## Table of contents\n\n- [Browser Support](#browser-support)\n- [Demo](#demo)\n- [Getting started](#getting-started)\n- [Usage](#usage)\n- [Available Props](#available-props)\n- [Methods](#methods)\n- [Want to Contribute?](#want-to-contribute)\n- [Need Help / Support?](#need-help)\n- [Collection of Components](#collection-of-components)\n- [Changelog](#changelog)\n- [License](#license)\n- [Keywords](#Keywords)\n\n## Browser Support\n\n| ![Chrome](https://raw.github.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png) | ![Firefox](https://raw.github.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png) | ![Safari](https://raw.github.com/alrra/browser-logos/master/src/safari/safari_48x48.png) | ![Edge](https://raw.github.com/alrra/browser-logos/master/src/edge/edge_48x48.png) | ![IE](https://raw.github.com/alrra/browser-logos/master/src/archive/internet-explorer_9-11/internet-explorer_9-11_48x48.png) |\n| ---------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |\n| 83.0 ✔                                                                                   | 77.0 ✔                                                                                      | 13.1.1 ✔                                                                                 | 83.0 ✔                                                                             | 11.9 ✔                                                                                                                       |\n\n## Demo\n\n\n[![](email.gif)](https://github.com/weblineindia/Vue-Email/email.gif)\n\n## Getting started\n\nInstall the npm package:\n\n```bash\nnpm install vue-weblineindia-email\n#OR\nyarn add vue-weblineindia-email\n```\n\n## Usage\n\nUse the `\u003cvue-weblineindia-email\u003e` component:\n\n```vue\n\u003ctemplate\u003e\n  \u003cdiv\u003e\n    \u003cdiv v-for=\"(emailV, ekey) in emailValue\" :key=\"emailV.key\"\u003e\n      \u003cemail\n        @focus=\"onFocusEmail\"\n        :values=\"emailValue\"\n        :index=\"ekey\"\n        :id=\"'email'\"\n        :name=\"'email_'\"\n        @inputChange=\"onChangeEmail\"\n        @blur=\"onBlurEmail\"\n        :onMultipleEmail=\"onMultipleEmail\"\n        :is-show-plus=\"emailValue.length - 1 === ekey\"\n      /\u003e\n    \u003c/div\u003e\n  \u003c/div\u003e\n\u003c/template\u003e\n\n\u003cscript\u003e\nimport Email from \"vue-weblineindia-email\";\nexport default {\n  components: { Email },\n  data: function() {\n    return {\n      emailValue: [{ email: \"\" }]\n    };\n  },\n\n  methods: {\n    onFocusEmail(event, index) {\n      event.target.placeholder = \"\";\n    },\n    onChangeEmail(value, id, index, error) {\n      this.emailValue[index].email = value[index].email;\n    },\n    onBlurEmail(event, placeholder) {\n      event.target.placeholder = placeholder;\n    },\n    onMultipleEmail() {\n      this.emailValue.push({\n        email: \"\"\n      });\n    }\n  }\n};\n\u003c/script\u003e\n```\n\n## Available Props\n\n| Prop               | Type                                                                      | default | Description                                                                                                                                                                                                                                                     |\n| ------------------ | ------------------------------------------------------------------------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| maxlength                 | Number                                                                    |  50       | maxlength for email          |\n| id          | String                                                                    |         | email id      |                                                                                                                                                                                                                              \n| emailFormateError        | String                                                                    |   Email is not valid      | email formate validation                                                                                                                                                                                                                 |\n| duplicateEmailError              | String                                                                    | Do not enter same email | duplicate email error                                                                                                                                        |\n| onMultipleEmail            | Function                                                         |     |  when click on plus icon on email|\n|name | String                                                                   | email   | email name.                                                                                                                                                                                                                  |\n| index | Number | 0    | email index.  |\n| values | Array[Object] | [{email : ''}]    | email default array |\n| isMultiple | Boolean | true    | flag to implement multiple email |\n| isShowPlus | Boolean | false    | flag to show plus icon for add multiple email |\n| placeholder | String | Email    | email placeholder |\n| disabled | Boolean | false    | disable input field |\n| tabindex | Number | 0    | email tabIndex |\n\n\n## Methods\n\n| Name         | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                  |\n| ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| focus        | Gets triggered when the input field receives focus.                                                                                                                                                                                                                                                                                                                                                                                             |\n| blur         | Gets triggered when the  input field loses focus.                                                                                                                                                                                                                                                                                                                                                                                                |\n| inputChange  | Gets triggered every time  input got changed.                                                                                                                                                                                                                                                                                                                                                                                                    |\n                                                                                                                                                                                                                                                                                                                                        \n\n## Want to Contribute?\n\n- Created something awesome, made this code better, added some functionality, or whatever (this is the hardest part).\n- [Fork it](http://help.github.com/forking/).\n- Create new branch to contribute your changes.\n- Commit all your changes to your branch.\n- Submit a [pull request](http://help.github.com/pull-requests/).\n\n---\n\n## Need Help?\n\nWe also provide a free, basic support for all users who want to use this VueJS Email Component in their software project. In case you want to customize this Address Component to suit your development needs, then feel free to contact our [VueJS developers](https://www.weblineindia.com/hire-vuejs-developer.html).\n\n---\n\n## Collection of Components\n\nWe have built many other components and free resources for software development in various programming languages. Kindly click here to view our [Free Resources for Software Development](https://www.weblineindia.com/communities.html)\n\n---\n\n## Changelog\n\nDetailed changes for each release are documented in [CHANGELOG.md](./CHANGELOG.md).\n\n\n\n## License\n\n[MIT](LICENSE)\n\n[mit]: https://github.com/weblineindia/Vue-Email/blob/master/LICENSE\n\n## Keywords\n\nvue-weblineindia-email,email,vue components,vuejs,vuejs component\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweblineindia%2Fvue-email","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fweblineindia%2Fvue-email","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fweblineindia%2Fvue-email/lists"}