今回はリージョンセレクター(V-Distpicker)コンポーネントの使い方について詳しく説明します。 リージョンセレクター(V-Distpicker)コンポーネントを使用する際の注意点は何ですか?一見。
インストールと引用は公式ウェブサイトから直接コピーしたため、詳細は説明しません。1. npm インストールを使用します: npm install v-distpicker --save
yarn add v-distpicker --save
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>
4. スタイル
ポップアップスタイルはダサいと思いますか? OK、スタイルを変更しましょう<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 } }, }
推奨読書: React-navigationの使用法の概要(コード付き)
JS DOM要素の一般的な追加、削除、変更、チェック操作の詳細な説明以上がリージョンセレクター(V-Distpicker)コンポーネントの使い方の詳細説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。