I'm trying to display my product description, but when I render it, the text goes next to each other instead of underneath. So for example I'm getting
description 1 description 2
and what I'm trying to get is
description 1
description 2
When I save my description I save it like this
$description = "$description1. \r\n .$description2"
$product->description = $description;
$product->save();
and this is how I'm trying to render it in vue
<p v-html="product.description"></p>