arenaComment.vue 404 字节
<template>
	<view class="more_comment">
		<CommentCard v-for="item in 5" :key="item" :isPadding="true"></CommentCard>
	</view>
</template>

<script>
	import CommentCard from '@/components/commentCard.vue'
	export default {
		components: { CommentCard },
		data() {
			return {
				
			};
		}
	}
</script>

<style lang="scss" scoped>
.more_comment{
	padding: 30rpx;
	background-color: #F6F6F6;
}
</style>