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

@camila-arce/vue-country-flag-selector

v0.1.17

Published

![Demostración del componente](https://raw.githubusercontent.com/camilaarce/vue-country-flag-selector/main/assets/demo.gif)

Downloads

55

Readme

Vue Country Flag Selector

Demostración del componente

Un componente de Vue 3, simple y personalizable, para seleccionar un país de una lista completa, mostrando su respectiva bandera y con funcionalidad de búsqueda integrada.


✨ Características

  • 🌍 Lista completa de países: Incluye todos los países del mundo.
  • 🚩 Banderas en SVG: Imágenes de alta calidad que se adaptan a cualquier tamaño.
  • 🔍 Buscador integrado: Filtra la lista de países escribiendo en un campo de búsqueda.
  • 🎨 Totalmente personalizable: Estilos scoped para adaptarse fácilmente al diseño de tu proyecto.
  • 🔄 Soporte para v-model: Se integra con el sistema de reactividad de Vue.
  • Cero dependencias: Componente ligero, sin añadir librerías extra.

📦 Instalación

Instala el paquete en tu proyecto usando npm:

npm install @camila-arce/vue-country-flag-selector

🚀 Uso

Ejemplo básico de cómo importar y usar el componente en tu aplicación Vue 3:

<script setup>
import { ref } from 'vue';
// 1. Importa el componente y sus estilos
import { CountrySelect } from '@camila-arce/vue-country-flag-selector';
import '@camila-arce/vue-country-flag-selector/style.css';

const selectedCountry = ref(''); // Por ejemplo, 'AR' para Argentina
</script>

<template>
  <div>
    <h1>Selector de País</h1>
    <CountrySelect
      v-model="selectedCountry"
      placeholder="Elige tu país de origen"
      theme="light" // 'light' or 'dark'
    />
    <p v-if="selectedCountry">
      País seleccionado (código): <strong>{{ selectedCountry }}</strong>
    </p>
  </div>
</template>

<style>
/* Puedes añadir estilos globales para el contenedor si lo deseas */
#app {
  max-width: 400px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}
</style>

⚙️ Props

| Prop | Tipo | Por defecto | Descripción | |---------------|--------|-----------------------|-----------------------------------------------------------------------------| | modelValue | String | '' | Valor del país seleccionado (código de 2 letras, ej: AR). Usar con v-model. | | placeholder | String | Seleccione un país | Texto mostrado cuando no hay país seleccionado. | | theme | String | light | Tema del componente ('light' o 'dark'). |

vue-country-flag-selector