-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
😀
Source:stackexchange.com