ng g component <component-name>// 例如:ng g component components/MovieItem
//app.module.tsimport { MovieItemComponent } from './components/movie-item/movie-item.component';@NgModule({/* 配置(声明)当前项目运行依赖的组件 */declarations: [AppComponent,MovieItemComponent],})
// app.component.html<app-movie-item></app-movie-item>
