3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 20:35:02 +00:00

Dashboard: rename component folders to lowercase

This commit is contained in:
Dragory 2019-07-28 18:26:36 +03:00
parent f186e5c61f
commit b065b1b18e
10 changed files with 8 additions and 8 deletions

View file

@ -1,21 +0,0 @@
<template>
<pre class="codeblock" v-highlightjs><code v-bind:class="lang" v-trim-code="trim"><slot></slot></code></pre>
</template>
<style scoped>
.codeblock {
padding: 0;
border-radius: 3px;
}
.hljs {
background: transparent;
padding: 16px;
}
</style>
<script>
export default {
props: ["lang", "trim"],
};
</script>