A vue component that renders wikitext.
<template>
<div>
<vue-wikitext :source="wikitext" />
</div>
</template>
<script>
export default {
components: {
'vue-wikitext': VueWikitext
},
data() {
return {
wikitext: '=Welcome to vue-wikitext='
};
},
}
</script>