vue-tel-input-fork

5.4.9 • Public • Published

vue-tel-input-fork

International Telephone Input with Vue.

In-action GIF

Documentation and live demo

Visit the website

Vue 3 Support

vue-tel-input-fork@next: Guide

Getting started

  • Install the plugin:

    npm install vue-tel-input-fork
  • Add the plugin into your app:

    import Vue from "vue";
    import VueTelInput from "vue-tel-input-fork";
    import "vue-tel-input-fork/dist/vue-tel-input-fork.css";
    
    Vue.use(VueTelInput);

    More info on installation

  • Use the vue-tel-input-fork component:

    <template>
      <vue-tel-input v-model="phone"></vue-tel-input-fork>
    </template>

Installation

npm

  npm install vue-tel-input-fork

Install the plugin into Vue:

import Vue from "vue";
import VueTelInput from "vue-tel-input-fork";
import "vue-tel-input-fork/dist/vue-tel-input-fork.css";

Vue.use(VueTelInput, options); // Define default global options here (optional)

View all available options in Props.

Or use the component directly:

<!-- your-component.vue-->
<template>
  <vue-tel-input v-model="value"></vue-tel-input-fork>
</template>
<script>
  import { VueTelInput } from 'vue-tel-input-fork';

  export default {
    components: {
      VueTelInput,
    },
  };

  <style src="vue-tel-input-fork/dist/vue-tel-input-fork.css"></style>;
</script>

Browser

<script src="https://unpkg.com/vue-tel-input-fork"></script>
<link
  rel="stylesheet"
  href="https://unpkg.com/vue-tel-input-fork/dist/vue-tel-input-fork.css"
/>

** If Vue is detected in the Page, the plugin is installed automatically.**

** Otherwise, manually install the plugin into Vue:

Vue.use(window["vue-tel-input-fork"]);

Use as a custom field of vue-form-generator

  • Add a component using vue-form-generator's abstractField mixin

    <!-- tel-input.vue -->
    <template>
      <vue-tel-input v-model="value"></vue-tel-input-fork>
    </template>
    
    <script>
      import { abstractField } from 'vue-form-generator';
    
      export default {
        name: 'TelephoneInput',
        mixins: [abstractField],
      };
    </script>
  • Register the new field as a global component

    import Vue from "vue";
    import TelInput from "<path>/tel-input.vue";
    
    Vue.component("field-tel-input", TelInput);
  • Now it can be used as tel-input in schema of vue-form-generator

    var schema: {
      fields: [
        {
          type: "tel-input",
          label: "Awesome (tel input)",
          model: "telephone",
        }
      ],
    };

    Read more on vue-form-generator's instruction page

Component lazy loading

Since the library is about 200kb of JavaScript and 100kb of CSS in order to improve initial page loading time you might consider importing it asyncronosly only when user navigates to the page where the library is actually needed. The technique is called Lazy Load and you can use it in some modern bundlers like Webpack and Rollup.

<!-- your-component.vue-->
<template>
  <vue-tel-input v-model="value"></vue-tel-input-fork>
</template>
<script>
  const VueTelInput = () =>
    Promise.all([
      import(/* webpackChunkName: "chunk-vue-tel-input-fork" */ 'vue-tel-input-fork'),
      import(/* webpackChunkName: "chunk-vue-tel-input-fork" */ 'vue-tel-input-fork/dist/vue-tel-input-fork.css'),
    ]).then(([{ VueTelInput }]) => VueTelInput);

  export default {
    components: {
      VueTelInput,
    },
  };
</script>

As you see, we do use Vue SFC <style></style> tag here to import component's css as it would result in CSS going to the main/vendors bundle instead of being downloaded on demand.

Changelog

Go to Github Releases

License

Copyright (c) 2021 Kathirr007. Released under the MIT License.

forked with by Kathirr007.

Package Sidebar

Install

npm i vue-tel-input-fork

Weekly Downloads

10

Version

5.4.9

License

MIT

Unpacked Size

6.02 MB

Total Files

49

Last publish

Collaborators

  • kathirr007