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