Former-commit-id: 1c069d76278e418a4025d9507b64394b78d6c1dc Former-commit-id: 196c50502c7c5dd567997000db8007406f2c7866 Former-commit-id: ce840c9b082c237c18e93ca38dc704000e355341 Former-commit-id: 81026579f627bbcbafce3aebbe444b9678cc4530
18 lines
257 B
Vue
18 lines
257 B
Vue
<template>
|
|
<d2-container>
|
|
<template slot="header">指定资源</template>
|
|
<d2-markdown :source="doc"/>
|
|
</d2-container>
|
|
</template>
|
|
|
|
<script>
|
|
import doc from './md/doc.md'
|
|
export default {
|
|
data () {
|
|
return {
|
|
doc
|
|
}
|
|
}
|
|
}
|
|
</script>
|