美文网首页
vue城市选择器

vue城市选择器

作者: 张xiao蛋 | 来源:发表于2018-11-21 12:00 被阅读0次

参考网址:https://distpicker.uine.org
1,安装依赖
npm install v-distpicker --save
2,在需要的组件引入
import VDistpicker from 'v-distpicker'
使用方法:

<template>
  <v-distpicker :placeholders="placeholders"></v-distpicker>
<template>

<script>
import VDistpicker from 'v-distpicker'

export default {
  components: { VDistpicker },
  data() {
      return {
          placeholders: {
              province: '------- 省 --------',
              city: '--- 市 ---',
              area: '--- 区 ---',
          }
      }
  }
}
</script>

相关文章

网友评论

      本文标题:vue城市选择器

      本文链接:https://www.haomeiwen.com/subject/vpgqqqtx.html