I’m using vuetifyjs with laravel 7 on the latest version of livewire v1.0.13.
The problem I’m having is getting swapped out code markup, works just fine but the page wont re-render the vuetify markup.
The initial page loads everything renders perfectly. However, when I try to swap out a section of html containing vuetify markup the new html is received from livewire just fine but the browser wont re-render it.
Steps to Reproduce:
from the toolbar livewire component blade, initial render is fine:
div
v-icon medium color=“orange darken-3” style=“opacity: .8;”>{{ $icon }}/v-icon
v-toolbar-title class=“ml-2” style=“margin-bottom: -2px;”>{{ $title }}/v-toolbar-title
/div
Updated markup is received as expected just the dom doesn’t re-render it.
Any help would be appreciated.