0.0.1 • Published 5 years ago

mdvue v0.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

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>

Thanks