
Vue Showdown
Use showdown.js in Vue
Showdown
Parse markdown text in client side with the power of showdown.js.
Vue component
Wrapped showdown.js as a Vue component, and you can use it easily.
Easy to use
Import and use it
import Vue from 'vue'
import VueShowdown from 'vue-showdown'
Vue.use(VueShowdown, {
options: {
emoji: true
}
})
Then use VueShowdown
in your vue SFC
<VueShowdown markdown="`vue-showdown` is easy to use :kissing_heart:"/>
Result
vue-showdown
is easy to use 😘
See the detailed guide 👈