import { useGitBookGlobal } from '@/themes/gitbook' /** * 移动端悬浮目录按钮 */ export default function FloatTocButton () { const { tocVisible, changeTocVisible } = useGitBookGlobal() const toggleToc = () => { changeTocVisible(!tocVisible) } return (
) }