Files
mayfly-go/frontend/src/layout/component/header.vue

12 lines
291 B
Vue
Raw Normal View History

<template>
2025-08-04 21:02:27 +08:00
<el-header class="layout-header">
<NavBarsIndex />
</el-header>
</template>
2025-08-04 21:02:27 +08:00
<script setup lang="ts" name="layoutHeader">
import { defineAsyncComponent } from 'vue';
const NavBarsIndex = defineAsyncComponent(() => import('@/layout/navBars/index.vue'));
</script>