Skip to content
Snippets Groups Projects
Commit 0a69b2de authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

Hide for mobile

parent ed84eeb8
No related branches found
No related tags found
No related merge requests found
<script setup lang="ts">
import { useDisplay } from "vuetify";
const props = defineProps<{
links: any;
}>();
const { mobile } = useDisplay();
// const { navigation } = useContent();
// console.log(navigation.value);
</script>
<template>
<v-navigation-drawer id="app-toc" location="right" :border="0" permanent>
<v-navigation-drawer
v-if="!mobile"
id="app-toc"
location="right"
:border="0"
permanent
>
<template #prepend>
<div class="text-h6 font-weight-medium mt-4 mb-2 ms-4">Contents</div>
</template>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment