import { useGitBookGlobal } from '@/themes/gitbook' import NavPostList from './NavPostList' /** * 悬浮抽屉 页面内导航 * @param toc * @param post * @returns {JSX.Element} * @constructor */ const PageNavDrawer = (props) => { const { pageNavVisible, changePageNavVisible } = useGitBookGlobal() const { filteredNavPages } = props const switchVisible = () => { changePageNavVisible(!pageNavVisible) } return <>
{/* 侧边菜单 */}
{/* 所有文章列表 */}
{/* 背景蒙版 */}
} export default PageNavDrawer