vue address
1.0.0
ตัวเลือกที่อยู่การเชื่อมโยงหลายระดับตาม vue.js จำเป็นต้องใช้กับ element-ui
ในโปรเจ็กต์ vue-cli
+ element-ui
เพียงคัดลอกไฟล์เดียว address.vue
ไปยังไดเร็กทอรีโปรเจ็กต์ของคุณ!
<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>