Skip to content
Snippets Groups Projects
Unverified Commit dfb6df01 authored by Acid Chicken (硫酸鶏)'s avatar Acid Chicken (硫酸鶏)
Browse files

ci(#10336): add static option to `PageHeader.tabs`

parent d6b1e5be
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,7 @@ export const Empty = {
};
},
args: {
static: true,
tabs: [],
},
parameters: {
......
......@@ -52,6 +52,7 @@ import { onMounted, onUnmounted, watch, nextTick, shallowRef } from 'vue';
import { defaultStore } from '@/store';
const props = withDefaults(defineProps<{
static?: boolean;
tabs?: Tab[];
tab?: string;
rootEl?: HTMLElement;
......@@ -127,7 +128,11 @@ async function enter(el: HTMLElement) {
entering = false;
});
setTimeout(renderTab, 170);
if (props.static) {
renderTab();
} else {
setTimeout(renderTab, 170);
}
}
function afterEnter(el: HTMLElement) {
//el.style.width = '';
......
......@@ -19,7 +19,7 @@
</div>
</div>
</div>
<XTabs v-if="!narrow || hideTitle" :class="$style.tabs" :tab="tab" :tabs="tabs" :root-el="el" @update:tab="key => emit('update:tab', key)" @tab-click="onTabClick"/>
<XTabs v-if="!narrow || hideTitle" :class="$style.tabs" :static="static" :tab="tab" :tabs="tabs" :root-el="el" @update:tab="key => emit('update:tab', key)" @tab-click="onTabClick"/>
</template>
<div v-if="(!thin_ && narrow && !hideTitle) || (actions && actions.length > 0)" :class="$style.buttonsRight">
<template v-for="action in actions">
......@@ -43,6 +43,7 @@ import { injectPageMetadata } from '@/scripts/page-metadata';
import { $i, openAccountMenu as openAccountMenu_ } from '@/account';
const props = withDefaults(defineProps<{
static?: boolean;
tabs?: Tab[];
tab?: string;
actions?: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment