2024-07-11 20:11:11 +08:00
|
|
|
<script lang="ts" setup>
|
2024-07-13 17:25:15 +08:00
|
|
|
import { Fallback } from '@vben/common-ui';
|
2024-07-11 20:11:11 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<Fallback
|
2025-02-27 20:21:48 +08:00
|
|
|
:description="`当前路由:${String($route.name)},子菜单不可见`"
|
2024-07-14 14:02:55 +08:00
|
|
|
status="coming-soon"
|
2024-07-11 20:11:11 +08:00
|
|
|
title="隐藏子菜单"
|
2025-02-27 20:21:48 +08:00
|
|
|
>
|
|
|
|
<template #action>
|
|
|
|
<RouterLink to="/demos/features/hide-menu-children/children">
|
|
|
|
打开子路由
|
|
|
|
</RouterLink>
|
|
|
|
</template>
|
|
|
|
</Fallback>
|
2024-07-11 20:11:11 +08:00
|
|
|
</template>
|