[Vuejs]-Vuetify: How to make v-html consider vuetify styling

1πŸ‘

βœ…

it is working as expected, if you (inspect the element in dev tools you will see the code there) but the v-table tag is not recognised as a valid html tag, which breaks the html rendering.
Vue official documentation says:

#v-html

Contents of v-html are inserted as plain HTML – Vue template syntax will not be processed. If you find yourself trying to compose templates using v-html, try to rethink the solution by using components instead.

Leave a comment