CellWrapper.vue 866 Bytes
Newer Older
潘际乾 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
<template>
  <div class="home-cell">
    <CellHeader :title="title">
      <slot name="header"></slot>
    </CellHeader>
    <div class="cell-content" :style="{ height: cellContentHeight + 'px' }">
      <slot></slot>
    </div>
  </div>
</template>

<script>
import CellHeader from "./CellHeader.vue";

export default {
  name: "CellWrapper",
  components: { CellHeader },
  props: {
    title: {
      type: String,
      required: true,
    },
    cellContentHeight: {
      type: Number,
      required: true,
    },
  },
  data() {
    return {};
  },
};
</script>

<style scoped>
.home-cell {
  background-color: #ffffff;
  box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
  border-radius: 8px;
  padding-bottom: 10px;
}
.home-cell::before {
  display: table;
  content: "";
}
.home-cell >>> .el-scrollbar__wrap {
  overflow-y: scroll;
  overflow-x: auto;
}
</style>