[Vuejs]-How to preserve newlines in VueJS when importing text from raw-loader and formatted using showdown

0👍

In Markdown.vue

<template>
    <p>{{source}}</p>
    <p v-html="converted"></p>
</template>

Leave a comment