Markdown 与 Vue SFC

每一个 Markdown 文件,首先都会编译为 HTML ,然后转换为一个 Vue 单文件组件 (SFC) 。换句话说,你可以把 Markdown 作为 Vue SFC 来看待:

  • <script><style> 标签会直接被当作 Vue SFC 中的标签。换句话说,它们是从 <template> 标签中提升到了 SFC 的顶层。
  • 所有 <script><style> 标签的以外的内容,会先被编译为 HTML ,然后被当作 Vue SFC 的 <template> 标签。

我们来看一个例子:

输入

  1. _你好, {{ msg }}_
  2. <RedDiv>
  3. _当前计数为: {{ count }}_
  4. </RedDiv>
  5. <button @click="count++">点我!</button>
  6. <script>
  7. import { h, ref } from 'vue'
  8. const RedDiv = (_, ctx) => h(
  9. 'div',
  10. {
  11. class: 'red-div',
  12. },
  13. ctx.slots.default()
  14. )
  15. export default {
  16. components: {
  17. RedDiv,
  18. },
  19. setup() {
  20. const msg = 'Markdown 中的 Vue'
  21. const count = ref(0)
  22. return {
  23. msg,
  24. count,
  25. }
  26. }
  27. }
  28. </script>
  29. <style>
  30. .red-div {
  31. color: red;
  32. }
  33. </style>

输出

你好, Markdown 中的 Vue

当前计数为: 0

点我!