obsidian-visualiser/components/prose/ProseH6.vue

13 lines
242 B
Vue

<template>
<h6 :id="parseId(id)">
<slot />
</h6>
</template>
<script setup lang="ts">
import { parseId } from '#shared/general.utils';
const props = defineProps<{ id?: string }>()
const generate = computed(() => props.id)
</script>