comment-action-sheet.vue 998 Bytes
<template>
  <YohoActionSheet ref="actionSheet" :full="true">
    <div class="content">
      <!--<template v-if="list.length === 0">-->
        <!--<Loading class="loading" :size="50"></Loading>-->
      <!--</template>-->

      <CommentScrollView ref="commentList" @on-back="onBackClick"></CommentScrollView>
    </div>
  </YohoActionSheet>
</template>


<script>
import {Loading} from 'cube-ui';
import CommentScrollView from './comment-scroll-view';

export default {
  name: 'CommentActionSheetPage',
  components: {
    Loading,
    CommentScrollView
  },
  data() {
    return {
    };
  },
  methods: {
    click() {
      this.$refs.actionSheet.show();
      this.$refs.commentList.click();
    },
    onBackClick() {
      this.$refs.actionSheet.hide();
    }
  }
};
</script>

<style>
  .content {
    width: 100%;
    height: 100vh;
    background-color: white;
  }

  .loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

</style>