You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
557 B
19 lines
557 B
<template>
|
|
<el-header class="layout-header" v-show="!isTagsViewCurrenFull">
|
|
<NavBarsIndex />
|
|
</el-header>
|
|
</template>
|
|
|
|
<script setup name="layoutHeader">
|
|
import { defineAsyncComponent } from 'vue';
|
|
import { storeToRefs } from 'pinia';
|
|
import { useTagsViewRoutes } from '/@/stores/tagsViewRoutes';
|
|
|
|
// 引入组件
|
|
const NavBarsIndex = defineAsyncComponent(() => import('/@/layout/navBars/index.vue'));
|
|
|
|
// 定义变量内容
|
|
const storesTagsViewRoutes = useTagsViewRoutes();
|
|
const { isTagsViewCurrenFull } = storeToRefs(storesTagsViewRoutes);
|
|
</script>
|