图标选择控件

This commit is contained in:
gary.fu
2024-01-02 14:07:17 +08:00
parent 6cd17a6702
commit 4a68e5fbc5
19 changed files with 343 additions and 77 deletions

View File

@@ -26,7 +26,10 @@ const showLeftMenu = computed(() => {
<el-header>
<top-nav />
</el-header>
<el-header v-if="tabsViewStore.isTabMode">
<el-header
v-if="tabsViewStore.isTabMode"
class="tabs-header"
>
<common-tabs-view />
</el-header>
<el-main>
@@ -51,3 +54,9 @@ const showLeftMenu = computed(() => {
</el-container>
</el-container>
</template>
<style scoped>
.tabs-header {
margin-top: 5px;
height: 40px
}
</style>