12345678910111213141516171819202122232425262728293031 |
- <template>
- <div class="header_v2_main">
- <route-navigation/>
- <div class="toolbar">
- <tool-info-bar ref="toolInfoBarRef"/>
- </div>
- </div>
- </template>
- <script setup name='HeaderV2' lang="ts">
- import RouteNavigation from "@/layout/fillet-layout/RouteNavigation.vue";
- import ToolInfoBar from "./ToolInfoBar.vue";
- </script>
- <style scoped lang="scss">
- .header_v2_main {
- display: flex;
- height: 42px;
- margin: 8px 16px 0 6px;
- .toolbar {
- width: max-content;
- height: 40px;
- border-radius: 5px;
- background-color: white;
- box-shadow: var(--el-box-shadow-light);
- padding: 0 8px 0 5px;
- }
- }
- </style>
|