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

nuxt3-select2

v0.1.29

Published

select2 for nuxt3. https://github.com/jackysupit/nuxt3-select2/tree/for-nuxt3

Downloads

193

Readme

This is a select2 component for nuxt3 based on godbasin work here: vue3-select2-component credits belong to them for making all these availble for us for free.

How to use


Install

// npm install
npm install nuxt3-select2 --save

Use as component

  1. make a plugin
// plugins/select2.client.ts
import Select2 from 'nuxt3-select2';

export default defineNuxtPlugin((nuxtApp) => {
  nuxtApp.vueApp.component("Select2", Select2, {});
});
  1. now it's available on your template
// use it
<template>
  <div>
    <Select2 v-model="myValue" :options="myOptions" :settings="{ settingOption: value, settingOption: value }" @change="myChangeEvent($event)" @select="mySelectEvent($event)" />
    <h4>Value: {{ myValue }}</h4>
  </div>
</template>
<script setup lang="ts">
  const myChangeEvent = (event) => {
    console.log("myChangeEvent: ", event);
  }
  const mySelectEvent = (e) => {
    console.log("mySelectEvent: ", event);
  }
  const myOptions = [
    {id: 1, text: 'apple'},
    {id: 2, text: 'berry'},
    {id: 3, text: 'cherry'},
  ]
  const myValue = ref();
</script>

Options

  • options: option[]
    • select options for select2
    • option: {id: key, text: value} or string
  • v-model: option value that is selected
    • id or string while multiple is disable
    • id[] or string[] while multiple is enable
  • disabled
    • if select is disabled
  • placeholder
    • placeholder attribute for select element
  • id
    • id attribute for select element
  • name
    • name attribute for select element
  • settings
    • configurable settings, see Select2 options API
    • setting: { settingOption: value, settingOption: value }

Supported Events

currently supporting these events:

  • change := change
  • closing := select2:closing
  • close := select2:close
  • opening := select2:opening
  • open := select2:open
  • selecting := select2:selecting
  • select := select2:select
  • unselecting := select2:unselecting
  • unselect := select2:unselect
  • clearing := select2:clearing
  • clear := select2:clear

For the complete documentation, see on Select2 Event API

Misc

  • problem with select2 inside input-group class Somehow this select2 doesn't work well with bootstrap input-group. Has googled it and found many people facing the same problem.

Here is how I manage it works:

  <div class="input-group">
    <Datepicker class="my-control" />
    <Select2 class="my-control"/>
  </div>

Putting form-control class is ok, but it will create borders, while I don't want to have that border. So I create my own class: my-control. It's optional of course.

here is the css:

  .input-group .select2-container {
    height: 37px;
  }

  .input-group .select2-container .selection .select2-selection--single {
      height: 100%;
  }

  /* optional, you can use form-control if you prefer */
  .input-group .my-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
  }
  • problem with select2 inside modal class this is also a weird behaviour.

there are 30 solutions (wow :) here: https://stackoverflow.com/questions/18487056/select2-doesnt-work-when-embedded-in-a-bootstrap-modal

but sadly few top answers just doesn't work for me. Instead, I did a little trick, and it worked. just override the z-index

.select2-container.select2-container--default.select2-container--open {
  z-index: 9999;
}

you don't have to make it 9999. at least the modal z-index + 1 is enough.

  • somehow after npm run build, the jquery and select2 doesn't work

    (warning: it's not recommended to add jquery to vuejs application. so take it at your own risk basically, all you need to do in jquery, you should be able to do it in vue. all you need to do is a little more googling and stackoverflowing :'' )

add this in the nuxt-config.ts

  app: {
    head: {
      script: [
        {src: '/_nuxt/node_modules/jquery/dist/jquery.js'},
        {src: '/_nuxt/node_modules/select2/dist/js/select2.min.js'},
      ],
    },
  css: [
    "/_nuxt/node_modules/select2/dist/css/select2.min.css",
  ],