25 lines
430 B
Vue
25 lines
430 B
Vue
<template>
|
|
<view class="address">
|
|
<AddressItem :addressList='addressList'></AddressItem>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
import AddressItem from '@/components/mine/address-block/address-item'
|
|
export default {
|
|
data() {
|
|
return {
|
|
addressList: ['0', '1', '2', '3']
|
|
}
|
|
},
|
|
components: {
|
|
AddressItem
|
|
},
|
|
onLoad() {}
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.address {
|
|
min-height: 100vh;
|
|
background-color: #ECECEC;
|
|
}
|
|
</style> |