TaskCompensation.vue 656 Bytes
<template>
  <div class="task-compensation">
    <div class="div-left">
      <div>2</div>
      <div>3</div>
    </div>
    <div>234</div>
  </div>
</template>

<script>
export default {
  name: "TaskCompensation",
  data() {
    return {};
  },
  methods: {},
};
</script>

<style lang="scss" scoped>
.task-compensation {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  div {
    flex: 1;
    height: 79vh;
    //margin-top: 1vh;
    background-color: #2d2b2b;
  }
}
.div-left {
  display: flex;
  flex-direction: column;
  div {
    flex: 1;
    background-color: #ccc;
    // height: 40vh;
    margin: 10px;
  }
}
</style>