79 lines
1.5 KiB
Vue
79 lines
1.5 KiB
Vue
|
|
<template>
|
||
|
|
<div class="component-markdown">
|
||
|
|
<div class="spin-group" v-if="!markedHTML">
|
||
|
|
<div>正在加载</div>
|
||
|
|
</div>
|
||
|
|
<div class="markdown-body" v-html="markedHTML"></div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import marked from 'marked'
|
||
|
|
import highlight from 'highlight.js'
|
||
|
|
export default {
|
||
|
|
props: {
|
||
|
|
url: {
|
||
|
|
type: String,
|
||
|
|
required: false,
|
||
|
|
default: ''
|
||
|
|
},
|
||
|
|
md: {
|
||
|
|
type: String,
|
||
|
|
required: false,
|
||
|
|
default: ''
|
||
|
|
}
|
||
|
|
},
|
||
|
|
data () {
|
||
|
|
return {
|
||
|
|
getReadmePublicPath: '',
|
||
|
|
markedHTML: ''
|
||
|
|
}
|
||
|
|
},
|
||
|
|
mounted () {
|
||
|
|
if (this.url) {
|
||
|
|
this.initWithUrl()
|
||
|
|
} else if (this.md) {
|
||
|
|
this.initWithMd()
|
||
|
|
} else {
|
||
|
|
console.log('not mounted init')
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
// 使用 md 初始化
|
||
|
|
initWithMd () {
|
||
|
|
this.markedHTML = this.marked(this.md)
|
||
|
|
console.log(this.markedHTML)
|
||
|
|
},
|
||
|
|
// 使用 url 初始化
|
||
|
|
async initWithUrl () {
|
||
|
|
this.markedHTML = await this.getReadme(this.url)
|
||
|
|
},
|
||
|
|
// 从 url 加载原始数据
|
||
|
|
async getReadme (name) {
|
||
|
|
const { data } = await this.$axios.get(name)
|
||
|
|
return this.marked(data)
|
||
|
|
},
|
||
|
|
marked (data) {
|
||
|
|
return marked(data, {
|
||
|
|
highlight: (code) => highlight.highlightAuto(code).value
|
||
|
|
})
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss">
|
||
|
|
@import '~@/assets/style/public.scss';
|
||
|
|
.component-markdown {
|
||
|
|
.spin-group {
|
||
|
|
height: 100px;
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
flex-direction: column;
|
||
|
|
color: $color-primary;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
|