
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
address-picker
Advanced tools
本插件基于mint-ui的picker和popup组件进行封装的三级地址联动, 使用效果类似于mint-ui的datetime-picker组件效果,如若需要自 定义地址数据,可根据address.js数据结果对数据进行替换
npm i address-picker --save
Code Example (ES6)
<template>
<div>
<h5 @click="show=true;">地址选择</h5>
<address-picker
@confirm="handle"
v-model="show"
></address-picker>
</div>
</template>
import addressPicker from 'address-picker';
let components = {};
components[addressPicker.name] = addressPicker;
export default {
components : components,
data () {
return {
show : false
}
},
methods : {
handle (value) {
console.log(value);
}
},
}
Your contributions and suggestions are welcome 😄😄😄💐💐💐.
FAQs
基于mint-ui的popup组件和picker组件的地址三级联动
The npm package address-picker receives a total of 2 weekly downloads. As such, address-picker popularity was classified as not popular.
We found that address-picker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.