fix: hideChildrenInMenu demo code (#5626)

This commit is contained in:
Netfan
2025-02-27 20:21:48 +08:00
committed by GitHub
parent c3eb4fab13
commit 86ce65e0ea
3 changed files with 35 additions and 8 deletions

View File

@@ -1,3 +1,23 @@
<script lang="ts" setup>
import { Fallback, VbenButton } from '@vben/common-ui';
import { useTabs } from '@vben/hooks';
import { X } from '@vben/icons';
const { closeCurrentTab } = useTabs();
</script>
<template>
<div>children</div>
<Fallback
description="当前路由在菜单中不可见"
status="coming-soon"
title="被隐藏的子菜单"
show-back
>
<template #action>
<VbenButton size="lg" @click="closeCurrentTab()">
<X class="mr-2 size-4" />
关闭当前标签页
</VbenButton>
</template>
</Fallback>
</template>