我有一个SwingDirective
和一个CardsPage
。该页面是用CardsModule
延迟加载的。 SwingDirective
是AppModule
的一部分,没有延迟加载。这是
export class SwingDirective {
@Input() positionChange;
}
这是在cards.html
中启动swing指令的方式
<div swing [positionChange]="positionChange" >
这里是app.module
@NgModule({
declarations: [
MyApp,SwingDirective
]
})
export class AppModule {}
但是当我运行应用程序时出现错误
无法绑定到“ positionChange”,因为它不是的已知属性 'div'。 (“
好像swing
未被识别。我在做什么错了?