http://www.aqcoder.com/markdown
npm install markdown-it-vue
<markdown-it-vue :content="content" :options="options"/> //content里写的是markdown的内容
//在data中写:
options: {
markdownIt: {
linkify: false, // 原本加上.就会显示链接 写为false后,不显示链接
html:true,
},
linkAttributes: {
attrs: {
show:false,
target: '_blank',
rel: 'noopener'
}
}
},
content:"",