刘建东 031ff697c6 微信小程序 zanui web 文档 (#142)
* [new feature]微信小程序 zanui web 文档

* fix: 修复绝对路径问题,对UI小优化

* fix: update config
2018-03-19 14:09:13 +08:00

85 lines
1.6 KiB
Vue

<template>
<div class="demo" :class="activeCodeType">
<h3 v-if="types.length">示例代码</h3>
<div class="demo-view-qrcode">
<img src="https://img.yzcdn.cn/public_files/2017/10/30/554dd940eb1a269d4ac9133e78ae321f.jpg?imageView2/2/w/300/h/300" />
<div>微信扫一扫</div>
</div>
<!-- <div class="code-type-tabs">
<div class="code-type-tab" @click="activeCodeType = $type" v-for="$type in types" :key="$type">
{{$type}}
</div>
</div> -->
<div class="demo-code">
<slot></slot>
</div>
</div>
</template>
<script>
export default {
props: ['demoTypes'],
data () {
return {
types: [],
activeCodeType: ''
}
},
created () {
this.types = this.demoTypes ? this.demoTypes.split(',') : []
this.activeCodeType = this.types ? this.types[0] : ''
}
}
</script>
<style scoped>
code.language-wxml::after {
content: 'WXML';
}
code.language-js::after {
content: 'JS';
}
code.language-wxss::after {
content: 'WXSS';
}
code.language-json::after {
content: 'JSON';
}
/* .demo {
margin-top: 15px;
}
.demo-code {
height: 500px;
overflow: auto;
background-color: #f5f7fa;
}
.code-type-tabs {
display: flex;
justify-content: center;
text-align: center;
}
.code-type-tab {
flex: 1;
}
.language-js, .language-wxml, .language-wxss, .language-json {
display: none;
}
.js .language-js {
display: block;
}
.json .language-json {
display: block;
}
.wxml .language-wxml {
display: block;
}
.wxss .language-wxss {
display: block;
}
pre + pre {
margin-top: 0;
} */
</style>