docs: disable documentDriven mode

This commit is contained in:
Benjamin Canac
2023-06-15 18:18:17 +02:00
parent c8e6ed8df9
commit e2f7d82d62
11 changed files with 84 additions and 35 deletions

View File

@@ -13,7 +13,12 @@
</template>
<script setup lang="ts">
const { toc } = useContent()
defineProps({
toc: {
type: Object,
default: null
}
})
const isTocOpen = ref(false)
</script>