obsidian-visualiser/components/prose/live/LiveH2.vue

12 lines
206 B
Vue

<template>
<span v-show="focused">## </span><h2><slot></slot></h2>
</template>
<script setup>
const props = defineProps({
focused: {
type: Boolean,
default: false
}
})
</script>