chore: add vant-doc package (#4197)

This commit is contained in:
neverland
2019-08-22 20:11:09 +08:00
committed by GitHub
parent f3f3789011
commit eeb65ed922
24 changed files with 1395 additions and 108 deletions
+29
View File
@@ -0,0 +1,29 @@
<template>
<div class="van-doc-block">
<slot />
</div>
</template>
<script>
export default {
name: 'van-doc-block'
};
</script>
<style lang="less">
@import '../style/variable';
.van-doc-block {
display: flex;
margin-bottom: 20px;
.highlight {
flex: 1;
box-sizing: border-box;
pre {
word-break: break-all;
}
}
}
</style>