37 lines
521 B
Vue
37 lines
521 B
Vue
![]() |
<template>
|
||
|
<div
|
||
|
class="theme-code-block"
|
||
|
:class="{ 'theme-code-block__active': active }"
|
||
|
>
|
||
|
<slot />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'CodeBlock',
|
||
|
props: {
|
||
|
title: {
|
||
|
type: String,
|
||
|
required: true
|
||
|
},
|
||
|
active: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.theme-code-block {
|
||
|
display: none;
|
||
|
}
|
||
|
.theme-code-block__active {
|
||
|
display: block;
|
||
|
}
|
||
|
.theme-code-block > pre {
|
||
|
background-color: orange;
|
||
|
}
|
||
|
</style>
|