1.0.0 • Published 4 years ago

vue-weblineindia-phone-number v1.0.0

Weekly downloads
6
License
MLT
Repository
github
Last release
4 years ago

Vue-Phone-Number

A Vue.js Phone number component is provide to add single/multiple input Phone number field with validation. The Phone number value is automatically validated on blur event. You can change validation message using props. You can also disable Phone number field using disable props.

Table of contents

Browser Support

ChromeFirefoxSafariEdgeIE
83.0 ✔77.0 ✔13.1.1 ✔83.0 ✔11.9 ✔

Demo

npm.io

Getting started

Install the npm package:

npm install vue-weblineindia-phone-number
#OR
yarn add vue-weblineindia-phone-number

Usage

Use the <vue-weblineindia-phone-number> component:

<template>
  <div>
    <div v-for="(phoneV, pkey) in phoneValue" :key="phoneV.key">
      <PhoneField
        :values="phoneValue"
        :index="pkey"
        :id="'Phone'"
        :name="'Phone_'"
        :onMultiplePhone="onMultiplePhone"
        :is-show-plus="phoneValue.length - 1 === pkey"
        @focus="onFocusPhone"
        @input="onChangePhone"
        @blur="onBlurPhone"
      />
    </div>
  </div>
</template>

<script>
import PhoneNumber from "vue-weblineindia-phone-number";
export default {
  components: { PhoneNumber },
  data: function () {
    return {
      phoneValue: [{ phone: "" }],
      preferredCountries: [
        { code: "IN", maxlength: 10 },
        { code: "US", maxlength: 11 },
      ],
      defaultSelectedCountry: [{ code: "IN", maxlength: 10 }],
    };
  },

  methods: {
    onFocusPhone(event, index) {
      event.target.placeholder = "";
    },
    onChangePhone(value, id, index, error) {
      this.phoneValue[index].phone = value[index].phone;
    },
    onBlurPhone(event, placeholder) {
      event.target.placeholder = placeholder;
    },
    onMultiplePhone() {
      this.phoneValue.push({
        phone: "",
      });
      this.defaultSelectedCountry.push(this.defaultSelectedCountry[0]);
    },
  },
};
</script>

Available Props

PropTypedefaultDescription
maxlengthNumber10The phone maxlength
idStringThe phone id
duplicatePhoneErrorStringDo not enter same Phone NumberDuplicate error message for phone number
onMultiplePhoneFunctionWhen click on plus icon on Phone number field
nameStringPhoneThe Phone name.
indexNumber0The Phone index.
valuesArrayObject{phone : ''}The Phone default array
isMultipleBooleantrueA flag to implement multiple Phone
isShowPlusBooleanfalseA flag to show plus icon for add multiple Phone
placeholderStringPhoneThe Phone placeholder
disabledBooleanfalseDisable phone field
tabindexNumber0The Phone tabIndex
preferredCountriesArrayObject[]The Phone Code peferredCountries
ignoredCountriesBooleanfalseThe Phone country list not showing
defaultSelectedCountryArrayObject{code: "IN",maxlength: 10}The Phone default country

Methods

NameDescription
focusGets triggered when the input field receives focus.
blurGets triggered when the input field loses focus.
changeGets triggered every time input got changed.
onChageDropdownGets triggered every time phone code got changed.
inputGets triggered every time phone code value got changed.

Want to Contribute?

  • Created something awesome, made this code better, added some functionality, or whatever (this is the hardest part).
  • Fork it.
  • Create new branch to contribute your changes.
  • Commit all your changes to your branch.
  • Submit a pull request.

Need Help?

We also provide a free, basic support for all users who want to use this VueJS Phone Number Component in their software project. In case you want to customize this Phone Number Component to suit your development needs, then feel free to contact our VueJS developers.


Collection of Components

We 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


Changelog

Detailed changes for each release are documented in CHANGELOG.md.

License

MIT

Keywords

vue-weblineindia-phone-number,phone,phonenumber,vue components,vuejs,vuejs component