import { useGlobal } from '@/lib/global' import CONFIG from '../config' import { siteConfig } from '@/lib/config' /** * 点击召唤目录抽屉 * 当屏幕下滑500像素后会出现该控件 * @param props 父组件传入props * @returns {JSX.Element} * @constructor */ const TocDrawerButton = (props) => { const { locale } = useGlobal() if (!siteConfig('HEXO_WIDGET_TOC', null, CONFIG)) { return <> } return (
) } export default TocDrawerButton