[Vuejs]-Vue component is rendring but page is blank.I can see the code by inspectinng the page

0👍

It sounds like history mode is not configured correctly on the server side.

As a test, change this:

const router = new VueRouter({
    mode: 'history',
    routes, // short for `routes: routes`,

})

…to this:

const router = new VueRouter({
    //mode: 'history',
    routes, // short for `routes: routes`,

})

If it works, it means your server side is not set up properly for Vue History Mode and you’ll need to configure your server side to allow for history mode.

  • Example 1
  • Example 2scroll down a little more than half way to “The Server-Side” section

Leave a comment