Files
mes-ui-d2/src/pages/demo/components/container/ghost-slot.vue
liyang a16c62e5a4 完善
Former-commit-id: e0a5e4a4954423d50cdaa57f5fc8057a8e3ef215 [formerly e0a5e4a4954423d50cdaa57f5fc8057a8e3ef215 [formerly e0a5e4a4954423d50cdaa57f5fc8057a8e3ef215 [formerly e0a5e4a4954423d50cdaa57f5fc8057a8e3ef215 [formerly 1fc51a4e117247b0023f0e25927608f4f9281f67 [formerly 9ebd9ea8b0b21cae36b356753fe9d50003145af2]]]]]
Former-commit-id: 1c4e3edd31787a549cedfa4c1e2fd9ba83b6a89e
Former-commit-id: 4ea6de6f61f38ad46e18e0f601fac6d7505bc466
Former-commit-id: 2bc2130cc0f60ae8eb85b5a7f492d60a754f0a9f [formerly f80a034694a85866c30c0b0fb0fc9f5267fcd56d]
Former-commit-id: 77bfe482382b14bd6e320becc9b671edcefd0727
Former-commit-id: a2e7ffd516054bb3603df2bae1f3dec360fdf737
Former-commit-id: 022d5c397a13dbc64e12ce60ece22a5a0a08b943
Former-commit-id: 66714b48a3530aa104bcca4b7540fecb05a8d3ff
Former-commit-id: 43ff1e93723f72f632212a61c9d9f779cfceb7a3
2018-07-21 14:13:25 +08:00

23 lines
429 B
Vue

<template>
<d2-container type="ghost">
<template slot="header">header</template>
<div class="d2-pt d2-pb">
<el-card shadow="never" style="width: 600px;">
<d2-markdown :source="long"/>
</el-card>
</div>
<template slot="footer">footer</template>
</d2-container>
</template>
<script>
import long from './md/long.md'
export default {
data () {
return {
long
}
}
}
</script>