chore: typo

zio/stable
Daniel Roe 2022-11-25 21:09:10 +00:00
parent 7d28f6ddbc
commit b6c118eb50
No known key found for this signature in database
GPG Key ID: 22D5008E4F5D9B55
1 changed files with 2 additions and 2 deletions

View File

@ -12,11 +12,11 @@ const langMap: Record<string, string> = {
vue: 'html', vue: 'html',
} }
const hightlighted = computed(() => { const highlighted = computed(() => {
return props.lang ? highlightCode(raw, langMap[props.lang] || props.lang as any) : raw return props.lang ? highlightCode(raw, langMap[props.lang] || props.lang as any) : raw
}) })
</script> </script>
<template> <template>
<pre class="code-block" v-html="hightlighted" /> <pre class="code-block" v-html="highlighted" />
</template> </template>