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

Make use of vuetify for prose elems

parent 40875c5d
No related branches found
No related tags found
No related merge requests found
<template> <template>
<div class="text-h1" :id="id"> <h1 class="text-h3 font-weight-bold" :id="id">
<a v-if="id && generate" :href="`#${id}`"> <a v-if="id && generate" :href="`#${id}`" class="text-decoration-none">
<slot /> <slot />
</a> </a>
<slot v-else /> <slot v-else />
</div> </h1>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
...@@ -12,6 +12,13 @@ import { useRuntimeConfig } from "#imports"; ...@@ -12,6 +12,13 @@ import { useRuntimeConfig } from "#imports";
defineProps<{ id?: string }>(); defineProps<{ id?: string }>();
const heading = 1; const heading = 1;
const { anchorLinks } = useRuntimeConfig().public.content; const { anchorLinks } = useRuntimeConfig().public.content;
console.log(anchorLinks);
const generate = const generate =
anchorLinks?.depth >= heading && !anchorLinks?.exclude.includes(heading); anchorLinks?.depth >= heading && !anchorLinks?.exclude.includes(heading);
</script> </script>
<style scoped>
a {
color: inherit;
}
</style>
<template>
<h2 class="text-h4 font-weight-bold" :id="id">
<a v-if="id && generate" :href="`#${id}`" class="text-decoration-none">
<slot />
</a>
<slot v-else />
</h2>
</template>
<script setup lang="ts">
import { useRuntimeConfig } from "#imports";
defineProps<{ id?: string }>();
const heading = 2;
const { anchorLinks } = useRuntimeConfig().public.content;
const generate =
anchorLinks?.depth >= heading && !anchorLinks?.exclude.includes(heading);
</script>
<style scoped>
a {
color: inherit;
}
</style>
<template>
<v-card flat color="transparent">
<v-card-text>
<ol>
<slot />
</ol>
</v-card-text>
</v-card>
</template>
<template> <template>
<v-card-text><slot /></v-card-text> <v-card flat color="transparent">
<v-card-text class="px-0 py-2"><slot /></v-card-text>
</v-card>
</template> </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