egoist / vmark

Convert markdown to Vue component.
MIT License
162 stars 11 forks source link

Support data attribute in front-matter #4

Closed egoist closed 6 years ago

egoist commented 6 years ago
---
data:
  count: 0
---

<button @click="count++">{{ count }}</button>

to:

export default {
    data() {
        return { count: 0 }
    },
    render() {
        // ...
    }
}