【发布时间】:2020-08-14 08:11:02
【问题描述】:
在主题的一个 .vue 文件(组件)中,我只想在 .vue 模板中动态渲染一些 md 内容,如下所示
md 内容:
::: slot aaa
# Here is slot aaa
:::
- A Paragraph
- Another Paragraph
::: slot bbb
Here is slot bbb
:::
而vue主题模板是这样的:
<template>
<div class="theme-container">
<Content slot-key="aaa" />
<br/>=============
<Content />
<br/>=============
<Content slot-key="bbb" />
<br />
</div>
</template>
而md的内容我可以从一些后端api获取,我想在页面中动态渲染,怎么办。
非常感谢。
【问题讨论】: