My vue component is designed to accept a prop of raw HTML, which originates from a wysiwyg editor utilizing tailwind classes for styling - similar to our vue app.
The issue arises when using
v-html="responseFromAPI"
in my component, as the raw HTML does not retain its styling from tailwind due to rendering nuances. Is there a method to properly render the API response within the component while retaining the desired styles?