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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@toneflix/vue-place-selector

v1.8.3

Published

Place (Country, State, City, e.t.c) Selector component for Vue3.

Readme

Vue Place Selector

npm npm

Country State City Selector component for Vue3. - See a live demo here.

Documentation

Read the full documentation here

Installation

npm install @toneflix/vue-place-selector
#or
yarn add @toneflix/vue-place-selector
#or
pnpm add @toneflix/vue-place-selector

Usage

Get API Key

This package depends on the Toneflix Places API for it's data set, the Toneflix Places API requires an API key for use on production, to get your own api keys, head to https://naija-places.toneflix.com.ng:

  1. Click on Portal.
  2. Login if required.
  3. Click on API Keys
  4. Click on Create new API Key
  5. Provide a name to identify your API key and click on Create

Global Registration

You can make Vue Place Selector available throughout your Vue project.

main.js or main.ts

import { createApp } from 'vue'
import App from './app.vue'
import VuePlaceSelector from '@toneflix/vue-place-selector'

const app = createApp(App)
app.use(VuePlaceSelector)
app.mount('#app')

Local Registration

You can also import the component in your Vue component.

SomeComponent.vue

<script setup>
import { VuePlaceSelector } from '@toneflix/vue-place-selector'
</script>

Use the Registered Component in Your Vue Template

SomeComponent.vue

<script setup lang="ts">
import { VuePlaceSelector } from '@toneflix/vue-place-selector'
import { ref } from 'vue'

const form = ref({
  country: '',
  state: '',
  city: ''
})
</script>

<template>
  <div style="display: flex; flex-direction: row;">
    <div>
      <VuePlaceSelector type="country" v-model="form.country" @error="console.log" />
    </div>
    <div>
      <VuePlaceSelector
        type="state"
        v-model="form.state"
        :params="{ countries: form.country }"
        @error="console.log"
      />
    </div>
    <div>
      <VuePlaceSelector
        type="city"
        v-model="form.city"
        :params="{ countries: form.country, states: form.state }"
        @error="console.log"
      />
    </div>
  </div>
</template>

Setup API Key (For Production)

If you have an env file, that would be the best place to provide your API key, add VITE_VUE_PLACESELECTOR_API_KEY to your env file with your API Key as the value

VITE_VUE_PLACESELECTOR_API_KEY=ExampleApiKeyHere

If you do not have an env file, you can pass the api-key prop to each component instance.

<template>
  <VuePlaceSelector
    api-key="ExampleApiKeyHere"
    v-model="form.city"
    :params="{ countries: form.country, states: form.state }"
    @error="console.log"
  />
</template>

Styling

Vue Place Selector is simply an unstyled html select element, you can style with css as usual or pass an custom component to the default slot which exposes the following interface:

{
  props: {
    loading: boolean;
    options: Place[];
    disable: boolean;
    modelValue: string | number | null;
    'onUpdate:modelValue': (value: any) => void;
  },
  selected: string | number | null;
}