allComment.vue 530 字节
<template>
  <!-- 全部评论 -->
  <view class="">
    <u-navbar bgColor="#fff" title="评论" :placeholder="true" :autoBack="true"></u-navbar>
    <view class="boxs">
      <comment :commentList="all"></comment>
    </view>
  </view>
</template>

<script setup>
import { ref } from 'vue'
import { onLoad } from '@dcloudio/uni-app'
import comment from '@/componets/comment.vue'
const all = ref([])
onLoad(e => (all.value = JSON.parse(e.allCommentList)))
</script>

<style lang="scss">
.boxs {
  padding: 40rpx 24rpx;
}
</style>