mirror of https://github.com/elk-zone/elk.git
24 lines
551 B
Vue
24 lines
551 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
code: string
|
|
lang?: string
|
|
}>()
|
|
|
|
const raw = $computed(() => decodeURIComponent(props.code).replace(/'/g, '\''))
|
|
|
|
const langMap: Record<string, string> = {
|
|
js: 'javascript',
|
|
ts: 'typescript',
|
|
vue: 'html',
|
|
}
|
|
|
|
const highlighted = computed(() => {
|
|
return props.lang ? highlightCode(raw, (langMap[props.lang] || props.lang) as any) : raw
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<pre v-if="lang" class="code-block" v-html="highlighted" />
|
|
<pre v-else class="code-block">{{ raw }}</pre>
|
|
</template>
|