[Vuejs]-Failed to execute 'createElement' on 'Document' The tag name provided ('{{laravue.currentview }}') is not a valid name

-1👍

It seems for some reason binding via is="{{laravue.currentView }}"
is being deprecated by vue JS. You will need to change your code from

<component is="@{{laravue.currentView }}" v-bind:app="laravue.app" keep-alive></component>

to

<component v-bind:is="laravue.currentView" v-bind:app="laravue.app" keep-alive></component>

You can find that here called Dynamic Components

😀

Leave a comment