Router out of service

router out of service

framework7-vue

props: {

  f7router: Object,

  title:String

},

data() {

  return {
   *******
  };

},

created() {
let _that = this;

 // test1
 // This is no problem
  setTimeout(() => {

    _that.f7router.navigate('/login')

  }, 500);

     // test2
     // no settimeout The route didn't respond what?
    _that.f7router.navigate('/login')

}