0

good morning. I'm using lit-element and I'm trying to implement the function: window.location.href = "/component but it doesn't work, it takes me to a page that says: not found I'm using vaadin router

Any idea? thanks

complete code

    if (this.ArrayNombres.includes(this.name)) {
      window.location.href ('/component');
    } else {
      alert("name not found");
    }
enericode
  • 13
  • 4

1 Answers1

0

The solution was:

Router.go(`/component`);
Wai Ha Lee
  • 8,598
  • 83
  • 57
  • 92
enericode
  • 13
  • 4