이번에는 V-Distpicker 컴포넌트 사용 방법과 V-Distpicker 컴포넌트 사용 시 주의사항에 대해 알려드리겠습니다.
1. 설치
npm 설치 사용:
npm install v-distpicker --save
yarn을 사용하여 설치
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>
3 다음은 핵심입니다
선택한 값을 가져옵니다
<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. 스타일
팝업스타일이 촌스럽다고 느끼시나요?
좋아, 이제 스타일을 바꿔보자
<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>
좋아, 끝났어. . 위 내용은 단지 소개에 불과합니다. 더 많은 경험이 있는 분은 언제든지 의견을 남겨주세요
이 기사의 사례를 읽으신 후 방법을 마스터하셨다고 생각합니다. 더 흥미로운 정보를 보려면 PHP에 있는 다른 관련 기사를 주목하시기 바랍니다. 중국사이트!
추천 자료:
노드를 작동하고 비동기를 사용하여 동시성을 제어하는 방법
위 내용은 V-Distpicker 구성요소를 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!