npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-country-dropdown-2

v1.0.13

Published

Country Dropdown for Vue@2

Downloads

142

Readme

Vue Country Dropdown 2

Country dropdown for Vue@2.

Demo

Installation

  • yarn:
      yarn add vue-country-dropdown-2
  • npm:
      npm i --save vue-country-dropdown-2

Usage

  • Install as a global component:

    import Vue from "vue";
    import VueCountryDropdown from "vue-country-dropdown-2";
    
    Vue.use(VueCountryDropdown);
  • Or use in a specific component

    import VueCountryDropdown from 'vue-country-dropdown-2'
    
    export default {
      components: {
        VueCountryDropdown
      }
    }
  • In your component:

    <template>
    ...
      <vue-country-dropdown
        @onSelect="onSelect"
        :preferredCountries="['TR', 'US', 'GB']"
        :defaultCountry="'TR'"
        :immediateCallSelectEvent="true"
        :enabledFlags="true"
        :enabledName="true"
        :enabledPhonecode="true"
        :showNotSelectedOption="true"
        :notSelectedOptionText="'Not Selected'"
        :disabled="false"
        :clearable="false"
        :multiple="false"
        :searchable="true"
        :closeOnSelect="true"
        :placeholder="'Select a country'"
      />
    ...
    <template>
    <script>
    export default {
      methods: {
         onSelect(country) {
           console.log(country);
           // Check the country object example below.
         },
      },
    }
    </script>

Country Object Example

{
    "id": 225,
    "name": "Turkey",
    "iso3": "TUR",
    "iso2": "TR",
    "numeric_code": "792",
    "phone_code": "+90",
    "capital": "Ankara",
    "currency": "TRY",
    "currency_name": "Turkish lira",
    "currency_symbol": "₺",
    "tld": ".tr",
    "native": "Türkiye",
    "region": "Asia",
    "subregion": "Western Asia",
    "timezones": [
        {
            "zoneName": "Europe/Istanbul",
            "gmtOffset": 10800,
            "gmtOffsetName": "UTC+03:00",
            "abbreviation": "EET",
            "tzName": "Eastern European Time"
        }
    ],
    "translations": {
        "kr": "터키",
        "br": "Turquia",
        "pt": "Turquia",
        "nl": "Turkije",
        "hr": "Turska",
        "fa": "ترکیه",
        "de": "Türkei",
        "es": "Turquía",
        "fr": "Turquie",
        "ja": "トルコ",
        "it": "Turchia",
        "cn": "土耳其",
        "tr": "Türkiye"
    },
    "latitude": "39.00000000",
    "longitude": "35.00000000",
    "emoji": "🇹🇷",
    "emojiU": "U+1F1F9 U+1F1F7"
}

Props

| Property value | Type | Default value | Description | | -------------------------- | --------- | ---------------| --------------------------------------------------------------------------------------- | | disabled | Boolean | false | Disables the dropdown | | defaultCountry | string | '' | Set a country as selected at startup with iso code. ie 'TR' | | defaultCountryByName | string | '' | Set a country as selected at startup with name. ie 'Turkey' | | defaultCountryByPhoneCode| string | '' | Set a country as selected at startup with phone code. ie '+90' | | enabledName | Boolean | true | Enable country name in the input | | enabledFlags | Boolean | true | Enable flags in the input | | enabledPhonecode | Boolean | true | Enable phone code in the input | | clearable | Boolean | false | User can clear or not the selected country | | multiple | Boolean | false | Select multiple country | | searchable | Boolean | true | Set countries searchable | | closeOnSelect | Boolean | true | Close country list on select | | placeholder | String | '' | Set a placeholder for the input | | preferredCountries | Array | [] | Preferred countries list, will be on top of the dropdown. ie ['TR', 'US', 'AL'] | | onlyCountries | Array | [] | List of countries will be shown on the dropdown. ie ['TR', 'US', 'AL'] | | ignoredCountries | Array | [] | List of countries will NOT be shown on the dropdown. ie ['TR', 'US', 'AL'] | | immediateCallSelectEvent | Boolean | false | Call the onSelect event when the component is mounted. | | showNotSelectedOption | Boolean | false | The Not Selected option is added to the top of the list. (All values are empty.) | | notSelectedOptionText | String | Not Selected | Replace Not Selected text with another string. | | countryNameTranslation | String | '' | Shows the name in the translation object instead of the country default name. ie 'tr' |

Events

| Property value | Arguments | Description | | ------------------- | --------- | -------------------------------------------------------------------------------------------------------------------------------- | | onSelect | Object | Fires when the input changes with the argument is the object includes country object. (Check the country object example above) | | open | none | Triggered when the dropdown is open. | | close | none | Triggered when the dropdown is closed. | | option_selecting | Object | Triggered after an option has been selected, before updating internal state. (Return same object with onSelect). | | option_selected | Object | Triggered when an option has been selected, after updating internal state. (Return same object with onSelect). | | option_deselecting| Object | Triggered when an option has been deselected, before updating internal state. (Return same object with onSelect). | | option_deselected | Object | Triggered when an option has been deselected, after updating internal state. (Return same object with onSelect). |

Highlights & Credits