96ac895f7a
Migrate docs to eslint flat config (build-script console override); doc extractor points at configs/eslint.
52 lines
1.9 KiB
Vue
52 lines
1.9 KiB
Vue
<script setup lang="ts">import type { Component } from 'vue';
|
|
|
|
const props = defineProps<{
|
|
component: Component;
|
|
source: string;
|
|
}>();
|
|
|
|
const showSource = ref(false);
|
|
|
|
const { highlighted, highlightReactive } = useShiki();
|
|
|
|
watch(showSource, async (show) => {
|
|
if (show && !highlighted.value) {
|
|
await highlightReactive(props.source, 'vue');
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="rounded-xl border border-(--border) overflow-hidden">
|
|
<!-- Live demo -->
|
|
<div class="p-8 bg-(--bg-subtle) flex items-center justify-center min-h-32">
|
|
<component :is="component" />
|
|
</div>
|
|
|
|
<!-- Source toggle bar -->
|
|
<div class="flex items-center border-t border-(--border) bg-(--bg-elevated)">
|
|
<button
|
|
type="button"
|
|
class="flex items-center gap-1.5 px-4 py-2.5 text-xs font-medium text-(--fg-muted) hover:text-(--fg) transition-colors cursor-pointer"
|
|
@click="showSource = !showSource"
|
|
>
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
<polyline points="16 18 22 12 16 6" /><polyline points="8 6 2 12 8 18" />
|
|
</svg>
|
|
{{ showSource ? 'Hide source' : 'View source' }}
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
|
|
class="transition-transform" :class="showSource ? 'rotate-180' : ''"
|
|
>
|
|
<polyline points="6 9 12 15 18 9" />
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Source code -->
|
|
<div v-if="showSource" class="border-t border-(--border) bg-(--bg-subtle)">
|
|
<div class="overflow-x-auto text-[13px] [&_pre]:p-4 [&_pre]:m-0 [&_pre]:bg-transparent!" v-html="highlighted" />
|
|
</div>
|
|
</div>
|
|
</template>
|