早上好。我正在使用lite -element,我正试图实现这个功能:window.location.href = "/component
但它不起作用,它把我带到一个页面,上面写着:未找到我正在使用vadin路由器
任何想法?由于
完整代码
if (this.ArrayNombres.includes(this.name)) {
window.location.href ('/component');
} else {
alert("name not found");
}
解决方案是:
Router.go(`/component`);