import Catalog from './Catalog' import { useMediumGlobal } from '@/themes/medium' /** * 悬浮抽屉目录 * @param toc * @param post * @returns {JSX.Element} * @constructor */ const TocDrawer = ({ post, cRef }) => { const { tocVisible, changeTocVisible } = useMediumGlobal() const switchVisible = () => { changeTocVisible(!tocVisible) } return <>
{/* 侧边菜单 */}
{post && <>
}
{/* 背景蒙版 */}
} export default TocDrawer