<!-- * @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>