mdvue
v0.0.1
Published
Render vue components from markdown files. Thanks to https://github.com/egoist/vmark-loader
Downloads
7
Readme
mdvue
Render vue components from markdown files.
Example
import HelloWorld from '@/components/HelloWorld'
import ByeWorld from '@/components/ByeWorld'
# Title
Hello world
<HelloWorld v-slot="{msg}">
<ByeWorld :item="msg"/>
</HelloWorld>
## Subtitle
Some markdown content
<style>
h1 {
color: cornflowerblue;
}
</style>