deming/pageE/more/Address.vue

25 lines
456 B
Vue
Raw Normal View History

2020-06-02 11:42:13 +08:00
<template>
<view class="address">
<AddressItem :addressList='addressList'></AddressItem>
</view>
</template>
<script>
import AddressItem from '@/components/mine/address-block/address-item'
export default {
data() {
return {
2020-06-02 15:35:19 +08:00
addressList: ['0', '1', '2', '3']
2020-06-02 11:42:13 +08:00
}
},
2020-06-02 15:35:19 +08:00
components: {
2020-06-02 11:42:13 +08:00
AddressItem
},
2020-06-02 16:08:35 +08:00
onLoad() {}
2020-06-02 11:42:13 +08:00
}
</script>
<style lang="scss" scoped>
.address {
2020-06-04 08:21:34 +08:00
min-height: calc(100vh - var(--window-top));
2020-06-02 11:42:13 +08:00
background-color: #ECECEC;
}
</style>