parent
1c3f1a63aa
commit
1b9494c520
|
@ -34,7 +34,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { computed, watch, provide, shallowRef, ref } from 'vue';
|
||||
import { computed, watch, provide, shallowRef, ref, onMounted, onActivated } from 'vue';
|
||||
import type { Tab } from '@/components/global/MkPageHeader.tabs.vue';
|
||||
import MkTimeline from '@/components/MkTimeline.vue';
|
||||
import MkInfo from '@/components/MkInfo.vue';
|
||||
|
@ -245,6 +245,13 @@ function switchTlIfNeeded() {
|
|||
}
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
switchTlIfNeeded();
|
||||
});
|
||||
onActivated(() => {
|
||||
switchTlIfNeeded();
|
||||
});
|
||||
|
||||
const headerActions = computed(() => {
|
||||
const tmp = [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue