<!-- * @Author: 纪泽龙 jizelong@qq.com * @Date: 2022-09-29 16:57:34 * @LastEditors: 纪泽龙 jizelong@qq.com * @LastEditTime: 2022-10-10 10:12:39 * @FilePath: /danger-manage-web/src/views/dangerControl/monitor/index.vue * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE --> <template> <div class="index-wrapper"> <Index :charsShow="false" /> </div> </template> <script> import Index from "@/views/index.vue"; export default { name: "", components: { Index, }, data() { return {}; }, methods: {}, }; </script> <style lang="scss" scoped> .index-wrapper { width: 100%; // height: 100%; height: calc(100vh - 50px); // height: 100vh; // background: red; position: relative; } </style>