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

regional-selection

v1.2.0

Published

Vue城市选择组件。

Downloads

10

Readme

pc端Vue城市地区选择组件。

基本功能:

  1. 支持全选、反选以及全部清空。
  2. 支持按拼音筛选。
  3. 勾选省份将会勾选省份下所有城市。
  4. 传入数据,返回数据可灵活处理。
  5. 可根据自己实际业务扩展。

Image text

安装插件方式

npm install regional-selection --save
# 或者
yarn add regional-selection

用法

组件引入:


// import包
import regionalSelection from 'regional-selection'

// use
Vue.use(regionalSelection)

使用:

<regional-selection
  v-model="pickCity"
  @on-pick-city="pickedCity = $event"
>
</regional-selection>

<!-- 省略代码 -->
data () {
  return {
    pickCity: []
  }
}

选择返回的数据:

[{
  "cityIndex": 37,
  "id": "210200",
  "name": "大连市",
  "pinYin": "dalian",
  "shortName": "大连"
}, {
  "cityIndex": 41,
  "id": "210600",
  "name": "丹东市",
  "pinYin": "dadong",
  "shortName": "丹东"
}]

属性

| 参数 | 说明 | 类型 | 默认值 | | -------- | ----- | ---- | ---- | | placeholder| - | String | 选择城市 | | showCloseBtn| 是否显示input框清空按钮 | Boolean | true | | clickModal| 是否点击遮罩关闭弹层 | Boolean | true | | inputClass| 替换预设的输入框样式 | String | null | | width| input框宽度 | Number | 200 |

事件

| 事件 | 说明 | 参数 | | -------- | ----- | ---- | | on-pick-city|城市选择的回调事件|勾选的城市|

本地运行

安装:npm install
运行:npm run dev

如果项目npm安装完毕后无法运行,找到index.html文件里面这段注释即可。

<script src="https://cdn.bootcss.com/vue/2.5.18-beta.0/vue.min.js"></script>