这是我routerCanDeactivate
在弃用的路由器中使用的方式:
import { CanDeactivate, ComponentInstruction } from '@angular/router-deprecated';
export class CallComponent implements CanDeactivate {
routerCanDeactivate(next: ComponentInstruction, prev: ComponentInstruction) {
// ...
}
}
如何做与ngrx/router相同的事情?我没有找到任何文件。
谢谢