例如,在app.module.ts中:
import { JhiProductListComponent } from './jhi-product-list.component';
@NgModule({ declarations: [ AppComponent, JhiProductListComponent ], ... })
例如,在product.module.ts中:
import { JhiProductListComponent } from '../jhi-product-list.component';
@NgModule({ imports: [ CommonModule, FormsModule, JhiProductListComponent //添加导入 ], ... })
例如,在jhi-product-list.component.ts中:
@Component({ selector: 'jhi-product-list', ... }) export class JhiProductListComponent { ... }
在其他模块中:
import { JhiProductListComponent } from './jhi-product-list.component';
@NgModule({ declarations: [ ... ], imports: [ ... JhiProductListComponent //添加导入 ], ... })