| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <n-layout-header bordered class="go-header">
- <header class="go-header-box">
- <div>
- <n-space>
- <slot name="left"></slot>
- </n-space>
- </div>
- <div>
- <slot name="center"></slot>
- </div>
- <div>
- <n-space>
- <slot name="ri-left"> </slot>
- <lang-select></lang-select>
- <theme-color-select></theme-color-select>
- <Theme-select></Theme-select>
- <slot name="ri-right"> </slot>
- </n-space>
- </div>
- </header>
- </n-layout-header>
- </template>
- <script setup lang="ts">
- import { ThemeSelect } from '@/components/ThemeSelect'
- import { LangSelect } from '@/components/LangSelect'
- import { ThemeColorSelect } from '@/components/ThemeColorSelect'
- </script>
- <style lang="scss" scoped>
- @include go(header) {
- &-box {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 60px;
- height: $--header-height;
- }
- }
- </style>
|