I have a vue project that needs to return data from a rich text field in Contentful. The data is returned as an object, is there a way to render this data using the v-html directive? At present I am able to render the html however it's wrapped in brackets, pictured below.
Code
<div
v-if="testRich"
class="mb4 testRich"
v-html="testRich"
/>