adding support for markdown in pages

This commit is contained in:
hamdy
2020-11-08 17:24:55 +02:00
parent b7b3e9334a
commit 78b21036ca
5 changed files with 59 additions and 8 deletions

View File

@@ -14,20 +14,24 @@
pricing="$299 USD per night"
url="/vacations/cancun"
/>
<vue-markdown>
# This is markdown
### Hello world!
</vue-markdown>
</div>
</Layout>
</Layout>
</template>
<script>
import VueMarkdown from 'vue-markdown'
export default {
metaInfo: {
title: "About us"
},
components: {
VueMarkdown
}
};
</script>