All Projects → good-father → vue-address

good-father / vue-address

Licence: MIT license
多级联动地址选择器

Programming Languages

Vue
7211 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to vue-address

webpack-Vue-vueRouter
通过webpack打包工具以及Vue和Vue-router实现一个公司官方网站的搭建
Stars: ✭ 21 (-36.36%)
Mutual labels:  element-ui
element-ui-s
🖖element-ui-s is a interesting component library 🦄https://shuangda1018.github.io/element-ui-s
Stars: ✭ 33 (+0%)
Mutual labels:  element-ui
template-element-ui
基于 Element-UI 的项目模板
Stars: ✭ 38 (+15.15%)
Mutual labels:  element-ui
Admin-Frame-Vue3
基于Vue3 + Element-Plus + Vite 开发的中/后台管理系统
Stars: ✭ 181 (+448.48%)
Mutual labels:  element-ui
fias
Ruby wrapper for the Russian FIAS database (Федеральная Информационная Адресная Система)
Stars: ✭ 82 (+148.48%)
Mutual labels:  address
cardano-addresses
Addresses and mnemonic manipulation & derivations
Stars: ✭ 118 (+257.58%)
Mutual labels:  address
Mr.Dclutterer
A minimal looking cross-platform desktop application made with Electron that handles quick file aggregation and bulk renaming.
Stars: ✭ 32 (-3.03%)
Mutual labels:  element-ui
SPPickerView
这是一个选择器,功能类似系统的UIPickerView,但是比UIPickerView的适用范围广得多
Stars: ✭ 28 (-15.15%)
Mutual labels:  address
HyperVue
🚀 基于 Hyperf + Vue + ElementUI 前后端分离的通用型管理后台
Stars: ✭ 23 (-30.3%)
Mutual labels:  element-ui
poetryclub-frontend
基于 vue.js + element-ui的诗词小筑网站前台页面
Stars: ✭ 101 (+206.06%)
Mutual labels:  element-ui
vue-thailand-address-autocomplete
🇹🇭 Autocomplete ที่อยู่ในประเทศไทย
Stars: ✭ 49 (+48.48%)
Mutual labels:  address
cashaddrjs
CashAddr.js: The new Bitcoin Cash address format for Node.js and web browsers.
Stars: ✭ 36 (+9.09%)
Mutual labels:  address
RuoYi-Vue-Oracle
🎉 (RuoYi)官方仓库 基于SpringBoot,Spring Security,JWT,Vue & Element 的前后端分离权限管理系统
Stars: ✭ 225 (+581.82%)
Mutual labels:  element-ui
bitcoin-address-validator
PHP package to validate legacy, segwit, native segwit (bech32) and taproot Bitcoin addresses
Stars: ✭ 30 (-9.09%)
Mutual labels:  address
snippets-client
A simple "save it for later" bookmarking app (front end).
Stars: ✭ 27 (-18.18%)
Mutual labels:  element-ui
administrative-divisions-of-China-on-Python
中华人民共和国行政区划爬虫,分为省级、地级、县级、乡级、村级,最多五级连动,可通过本项目自行爬取数据也可使用本项目在线接口直接调用。
Stars: ✭ 91 (+175.76%)
Mutual labels:  address
vscode-ethover
Ethereum Account Address Hover Info and Actions
Stars: ✭ 35 (+6.06%)
Mutual labels:  address
macorg
MAC Address Org Auto-Detection
Stars: ✭ 32 (-3.03%)
Mutual labels:  address
iceaddr
Python package to look up information about Icelandic street addresses, postcodes and placenames
Stars: ✭ 21 (-36.36%)
Mutual labels:  address
madao
🎉 My blog, powered by @nuxt
Stars: ✭ 54 (+63.64%)
Mutual labels:  element-ui

vue-address

基于vue.js的多级联动地址选择器,需要配合element-ui使用

如何使用?

vue-cli + element-ui 的项目中,把address.vue单文件copy到你的项目目录里就可以啦!

<template>
  <div id="app">
    <img src="./assets/logo.png">
    <vue-address
      :province="province"
      :city="city"
      :detail="detail"
      :district="district"
      @change="handlerChange"
    ></vue-address>
  </div>
</template>

<script>
import vueAddress from './components/address'
export default {
  components: {
    vueAddress
  },
  data: function() {
    return {
      province:'',
      city:'',
      district:'',
      detail:''
    }
  },
  methods: {
    handlerChange: function (val) {
      console.log(val);
    }
  }
}
</script>
<style>
#app {text-align: center;color: #2c3e50;margin-top: 60px;}
</style>

vue-address属性

  • province 省
  • city 市
  • district 区/县
  • detail 详细地址

vue-address事件

  • change 当省、市、区/县、详细地址任一值改变时触发
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].