23 lines
409 B
Vue
23 lines
409 B
Vue
|
<template>
|
||
|
<view class="collection">
|
||
|
<CollectionItem></CollectionItem>
|
||
|
</view>
|
||
|
</template>
|
||
|
<script>
|
||
|
import CollectionItem from '@/components/mine/collection-item/index'
|
||
|
export default {
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
components: {
|
||
|
CollectionItem
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
.collection {
|
||
|
min-height: calc(100vh - var(--window-top));
|
||
|
background-color: #ECECEC;
|
||
|
padding-top: 1rpx;
|
||
|
}
|
||
|
</style>
|