import { useGlobal } from '@/lib/global' import { useGitBookGlobal } from '@/themes/gitbook' /** * 移动端文章导航按钮 */ export default function MobileButtonPageNav() { const { pageNavVisible, changePageNavVisible } = useGitBookGlobal() const { locale } = useGlobal() const togglePageNavVisible = () => { changePageNavVisible(!pageNavVisible) } return (
) }