This commit is contained in:
2020-06-02 11:42:13 +08:00
parent 963dc86404
commit 04855a770c
11 changed files with 262 additions and 61 deletions

28
pageE/mine/Address.vue Normal file
View File

@@ -0,0 +1,28 @@
<template>
<view class="address">
<AddressItem :addressList='addressList'></AddressItem>
11
</view>
</template>
<script>
import AddressItem from '@/components/mine/address-block/address-item'
export default {
data() {
return {
addressList: [1, 1, 1]
}
},
comments: {
AddressItem
},
onLoad() {
console.log(111)
}
}
</script>
<style lang="scss" scoped>
.address {
min-height: 100vh;
background-color: #ECECEC;
}
</style>