Routes Content Does Not Show In Vue-router And Laravel
Im following this YT tutorial, I followed the steps but it seems that the ExampleComponent does not show. The App.vue shows but not the route. Here are my code: app.js import Vue f
Solution 1:
Change the mode from history
to hash
because the history mode in this case is reserved to Laravel routing system :
export default new VueRouter({
routes : [
{ path : '/', component : ExampleComponent }
],
mode: 'hash'
});
Post a Comment for "Routes Content Does Not Show In Vue-router And Laravel"