<template>
<code v-if="inline" :class="`language-${prismLang}`" v-html="html"></code>
<pre v-else :class="`language-${prismLang}`"><code :class="`language-${prismLang}`" v-html="html"></code></pre>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import 'prismjs';
import 'prismjs/themes/prism-okaidia.css';
export default defineComponent({
props: {
code: {
type: String,
required: true
},
lang: {
required: false
inline: {
type: Boolean,
}
computed: {
prismLang() {
return Prism.languages[this.lang] ? this.lang : 'js';
html() {
return Prism.highlight(this.code, Prism.languages[this.prismLang], this.prismLang);
});
</script>