https://github.com/innei/markdown-to-jsx-vue3
https://github.com/innei/markdown-to-jsx-vue3
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/innei/markdown-to-jsx-vue3
- Owner: Innei
- License: mit
- Created: 2022-11-27T13:41:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-13T23:56:13.000Z (about 1 year ago)
- Last Synced: 2025-04-14T00:37:10.524Z (about 1 year ago)
- Language: TypeScript
- Size: 555 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!
}
})
```