no message

Former-commit-id: d947e54093471ecc85fe9171d51aa64ad560ba9e [formerly d947e54093471ecc85fe9171d51aa64ad560ba9e [formerly d947e54093471ecc85fe9171d51aa64ad560ba9e [formerly d947e54093471ecc85fe9171d51aa64ad560ba9e [formerly 0639e27228bd4ce7583671ac6c5d1702c75c57b9 [formerly c263545cb8457cb5b8194fdbe6393a9e38ad26a6]]]]]
Former-commit-id: 7a51bd5d5340e8df7112dedf6fb4bcc3209bf6ea
Former-commit-id: b0e44c55c5a159403518bc96eeaab4ddce82b379
Former-commit-id: d061577549c79468a84ac65e541110d512de97e8 [formerly 7a35d2d01c56d0520cf62edc02cc5630d0232b49]
Former-commit-id: 0aae62a7688da3c9b63b88e2c3416ec4faa8735a
Former-commit-id: 2f1c380beb8720f3aa8e50099f467bd55a7f2259
Former-commit-id: 5b8f973daa4f9f9de742bf832784f8a86f037a9d
Former-commit-id: 09933084b7cbc32ff54f0f158aecc352061e158d
Former-commit-id: 445510e39e959b6b0451d1d47c6427f16361cd87
This commit is contained in:
liyang
2018-07-02 12:03:33 +08:00
parent a2f93bf96e
commit f979d92620
4 changed files with 24 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
<template>
<d2-container type="ghost">
<template slot="header">header</template>
<el-card shadow="never" class="d2-mt" style="width: 50%;">
<d2-markdown :source="doc"/>
</el-card>
</d2-container>
</template>
<script>
import doc from './md/doc-ghost.md'
export default {
data () {
return {
doc
}
}
}
</script>