Newer
Older
sanitationFront / src / views / overview / components / blockContainer.vue
StephanieGitHub on 24 Mar 2021 489 bytes MOD: 完善环卫系统UI
<!--
 * @Description:
 * @Author: 王晓颖
 * @Date:
 -->
<template>
  <div class="chart-div">
    <slot/>
  </div>
</template>

<script>
export default {
  name: 'BlockContainer'
}
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
  .chart-div{
    background-image: url('../../../assets/overview/frame.png');
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: space-between;
  }
</style>