如果可能的话,我想从常规打字稿类中启动或调用组件并将其传递给数据。
我的普通班:
export class MyClass {
constructor() {
const myModel = new MyModel();
myModel.setName('Peter');
const component = new DashComponent(dashModel);
}
}
但这不会在浏览器中加载组件。
如果我使用router.navigate(),则可以初始化组件,但我想也是要在构造函数中传递数据。
谢谢。