這篇文章主要介紹了關於VUE-地區選擇器(V-Distpicker)組件的使用,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
廢話不多說,直接進入正題。
安裝,引用,這些直接從官網拷貝來的,就不多說了。
1、安裝
#使用npm 安裝:
##
npm install v-distpicker --save
yarn add v-distpicker --save
#2、使用
註冊元件import VDistpicker from 'v-distpicker' Vue.component('v-distpicker', VDistpicker);
#註冊元件
import VDistpicker from 'v-distpicker' export default { components: { VDistpicker } }
簡單使用
基礎
<v-distpicker></v-distpicker>
#預設值
##
<v-distpicker province="广东省" city="广州市" area="海珠区"></v-distpicker>
<v-distpicker type="mobile"></v-distpicker>
## 取得選擇的值
<template> <button @click="choose">点我选择区域</button> <p class="pwrap" v-if="show"> <v-distpicker type="mobile" @province="onChangeProvince" @city="onChangeCity" @area="onChangeArea"></v-distpicker> </p> </template>
在你引用v-distpicker 的父元件裡面定義幾個方法來取得選擇的值。
<script> import VDistpicker from 'v-distpicker' export default { name: 'getAddress', components: { VDistpicker }, data() { return { show:false, } }, methods: { choose(){ this.show=!this.show }, onChangeProvince(a){ console.log(a) }, onChangeCity(a){ console.log(a) }, onChangeArea(a){ console.log(a) this.show=false } }, }
4、樣式
你是不是覺得彈出的樣式很醜?
#OK,下面來改改樣式<style scoped> .pwrap{ height: 400px; overflow-y: auto; position: fixed; left: 0; bottom: 0; width: 100%; } .pwrap>>>.distpicker-address-wrapper{ color: #999; } .pwrap>>>.address-header{ position: fixed; bottom: 400px; width: 100%; background: #000; color:#fff; } .pwrap>>>.address-header ul li{ flex-grow: 1; text-align: center; } .pwrap>>>.address-header .active{ color: #fff; border-bottom:#666 solid 8px } .pwrap>>>.address-container .active{ color: #000; } </style>
OK,我要說的完了。 。以上只是拋磚引玉,誰有更多的使用心得,請不吝評論
相關推薦:Vue表單類別的父子元件資料傳遞範例
以上是VUE-地區選擇器(V-Distpicker)元件的使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!