Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

region-select

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

region-select

地区级联选择框

  • 0.1.2
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

region-select

引入

yarn add region-select
npm i region-select

依赖项:

使用

请参考极简demo:
cd node_modules/region-select/demo

地区级联选择组件,根据所选最后一级id数据级联选中

<RegionSelect v-model="area_id" 绑定值,绑定选中项的id :options="area_list" 数据源 :size='size' 尺寸 默认small (非必输) :disabled='false' 是否禁用 默认false (非必输) :placeholder='xxx' 占位文本 默认“所属地区” (非必输) :props='props' 对象属性绑定 默认如props对象 (非必输) />

props 默认对象 props = { label: "name", // 指定每个选项显示,为某个属性 value: "cityCode", // 指定每个选项值,为某个属性 children: "child", // 指定每个子选项,为某个属性 checkStrictly: true, // 任意层级可选,默认true multiple: false // 是否多选,默认false 多选情况下,v-model为字符数组 }

数据源格式 area_list = [ { name: "呼和浩特市", cityCode: '001', child: [ { name: "市辖区", cityCode: '0011' }, { name: "东河区", cityCode: '0012' }, { name: "昆都仑区", cityCode: '0013' }, ] } ]

FAQs

Package last updated on 30 Mar 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc