<template> <div class="app-container" style="background-color: white"> <el-row> <!--<el-col :span="12">--> <!--<device-count-by-type/>--> <!--</el-col>--> <el-col :span="24"> <device-count-by-dept/> </el-col> </el-row> </div> </template> <script> import DeviceCountByType from './components/deviceCountByType' import DeviceCountByDept from './components/deviceCountByDept' export default { name: 'DeviceStatics', components: { DeviceCountByDept, DeviceCountByType }, data() { return {} } } </script> <style scoped> </style>