mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
70 lines
1.2 KiB
Vue
70 lines
1.2 KiB
Vue
<template>
|
|
<demo-section>
|
|
<demo-block :title="$t('basicUsage')">
|
|
<van-address-edit
|
|
:area-list="areaList"
|
|
show-postal
|
|
show-delete
|
|
show-set-default
|
|
show-search-result
|
|
:search-result="searchResult"
|
|
@save="onSave"
|
|
@delete="onDelete"
|
|
@change-detail="onChangeDetail"
|
|
/>
|
|
</demo-block>
|
|
</demo-section>
|
|
</template>
|
|
|
|
<script>
|
|
import areaList from '../../area/demo/area';
|
|
|
|
export default {
|
|
i18n: {
|
|
'zh-CN': {
|
|
searchResult: [{
|
|
name: '黄龙万科中心',
|
|
address: '杭州市西湖区'
|
|
}, {
|
|
name: '黄龙万科中心G座'
|
|
}, {
|
|
name: '黄龙万科中心H座',
|
|
address: '杭州市西湖区'
|
|
}]
|
|
},
|
|
'en-US': {
|
|
searchResult: [{
|
|
name: 'Name1',
|
|
address: 'Address'
|
|
}, {
|
|
name: 'Name2'
|
|
}, {
|
|
name: 'Name3',
|
|
address: 'Address'
|
|
}]
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
areaList,
|
|
searchResult: []
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
onSave() {
|
|
this.$toast('save');
|
|
},
|
|
|
|
onDelete() {
|
|
this.$toast('delete');
|
|
},
|
|
|
|
onChangeDetail(val) {
|
|
this.searchResult = val ? this.$t('searchResult') : [];
|
|
}
|
|
}
|
|
};
|
|
</script>
|