[Vuejs]-Vue router object is null

2👍

I had this:

var router = new Router({
  history: true
});

Instead of this:

export var router = new Router({
  history: true
});

@Ismail RBOUH Thanks for helping.

👤Jamie

Leave a comment