vant/docs/components/demo-block.vue
2017-03-22 21:04:27 +08:00

65 lines
1.1 KiB
Vue

<template>
<div class="demo-block" :class="blockClass">
<slot name="examples"></slot>
<slot name="highlight"></slot>
</div>
</template>
<script>
export default {
computed: {
blockClass() {
return `demo-${this.$route.path.split('/').pop()}`;
}
}
};
</script>
<style>
.demo-block {
transition: .2s;
overflow: hidden;
margin-bottom: 20px;
code {
font-family: Menlo, Monaco, Consolas, Courier, monospace;
}
.examples {
width: 320px;
float: right;
box-sizing: border-box;
padding: 10px 0 0;
min-height: 200px;
max-height: 600px;
overflow: auto;
background-color: #F8F8F8;
border: 1px solid #E5E5E5;
}
.highlight {
margin-right: 345px;
box-sizing: border-box;
border: 1px solid #E5E5E5;
border-radius: 4px;
pre {
margin: 0;
}
code.hljs {
margin: 0;
border: none;
max-height: none;
border-radius: 0;
padding: 20px;
background-color: #F8F8F8;
&::before {
content: none;
}
}
}
}
</style>