<template> <div class="app-container"> <el-row> <el-col :span="12"> <device-count-by-type/> </el-col> <el-col :span="12"> <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() { } } </script> <style scoped> </style>