---
export interface Props {
title?: string;
toggleLabel?: string;
targetSelector?: string;
}
const {
title = '目录',
toggleLabel = '目录',
targetSelector = '[data-report-content]'
} = Astro.props;
const sidebarId = `toc-sidebar-${Math.random().toString(36).slice(2, 10)}`;
---