<template> <el-container style="background-color:#e8e8e8;margin:0;"> <el-header style="padding:0;" > <headerCom></headerCom> </el-header> <div style="height:8px;"></div> <el-container> <el-aside width="200px" style="background-color:white;"> <sideMenu></sideMenu> </el-aside> <div style="width:8px;"></div> <el-main style="padding:0;background-color:white;position:relative;"> <business></business> </el-main> </el-container> </el-container> </template> <script> import headerCom from "./Header" import sideMenu from "./SideMenu" import business from "../Business" export default { components:{headerCom,sideMenu,business} } </script> <style> </style>