3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-24 18:15:02 +00:00

Docs work

This commit is contained in:
Dragory 2019-10-25 21:45:18 +03:00
parent ba38d38b75
commit 1ba49034e2
10 changed files with 167 additions and 91 deletions

View file

@ -1,9 +1,9 @@
<template>
<pre class="codeblock" v-highlightjs><code :class="lang" v-trim-indents="trim"><slot></slot></code></pre>
<pre class="codeblock" v-highlightjs><code :class="codeLang" v-trim-indents="trim"><slot></slot></code></pre>
</template>
<script>
export default {
props: ["lang", "trim"],
props: ["codeLang", "trim"],
};
</script>