An open API service indexing awesome lists of open source software.

https://github.com/innei/markdown-to-jsx-vue3


https://github.com/innei/markdown-to-jsx-vue3

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# markdown-to-jsx-vue3

Fork [markdown-to-jsx](https://github.com/probablyup/markdown-to-jsx).

The most lightweight, customizable Vue3 markdown component, using Vue 3 SFC or TSX.

The component props is same as [markdown-to-jsx](https://github.com/probablyup/markdown-to-jsx).

## Example

```vue

# Hello world!

import Markdown from "markdown-to-jsx-vue3";

```

```tsx
import Markdown from "markdown-to-jsx-vue3";

defineComponent({
setup() {
return () => # Hello world!
}
})
```