no message

Former-commit-id: cb9aed62a77b182a5fd4ff818dbf57da53809b5c [formerly cb9aed62a77b182a5fd4ff818dbf57da53809b5c [formerly cb9aed62a77b182a5fd4ff818dbf57da53809b5c [formerly cb9aed62a77b182a5fd4ff818dbf57da53809b5c [formerly 640177e2b7eeb70e6ad29fb47f6c91d5e12a21eb [formerly dd97bf357a2d59a91fad3b7a37e2e289e6c3298f]]]]]
Former-commit-id: 542883849f2fd445c591e848fb10965e83dbd3a9
Former-commit-id: 2659fa4592115845114189635c56c3c616d283a5
Former-commit-id: 716e6c450abf4064463800f08761d513b3cc3e95 [formerly ad352254dd0907dc9a72b96d464b7fdbccca7d33]
Former-commit-id: dfa79894672e4f95bf4f1fb3a29c555e57b8fd3a
Former-commit-id: 838365672167d541e8c5222358aff50dfa432503
Former-commit-id: 6b2bbbc51e573a5faf006f8142e4d0b2bcb7bfec
Former-commit-id: 1f5d8efc64c2bc80b267364a5785d1935a590a3d
Former-commit-id: 94ab50748f5c4a487c08e3bd98d317e609737e35
This commit is contained in:
liyang
2018-07-01 20:57:15 +08:00
parent 63759ec3ec
commit 743b084d4a
7 changed files with 179 additions and 6 deletions

View File

@@ -0,0 +1,22 @@
<template>
<d2-container type="full" :scroll="true">
<template slot="header">
我是插入到 header 中的内容
</template>
<d2-markdown :source="doc"/>
<template slot="footer">
<d2-demo-link-btn title="D2Admin" link="https://github.com/FairyEver/d2-admin"/>
</template>
</d2-container>
</template>
<script>
import doc from './md/doc-full-bs.md'
export default {
data () {
return {
doc
}
}
}
</script>