Some checks failed
Deploy / deploy (push) Has been cancelled
Full-stack web application for Telegram management - Frontend: Vue 3 + Vben Admin - Backend: NestJS - Features: User management, group broadcast, statistics 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
561 B
Vue
24 lines
561 B
Vue
<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>
|
|
<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>
|