在Angular2中导入自己的组件可以通过以下步骤实现:
declarations
数组中添加组件。以下是一个示例:
my-component
):import { Component } from '@angular/core';
@Component({
selector: 'my-component',
template: '<h1>My Component</h1>'
})
export class MyComponent {
// 组件逻辑
}
import { MyComponent } from './my-component.component';
app.module.ts
中:import { MyComponent } from './my-component.component';
@NgModule({
declarations: [
MyComponent
],
// 其他模块配置
})
export class AppModule { }
app.component.html
中:<my-component></my-component>
这样,你就成功地在Angular2中导入并使用了自己的组件。
推荐的腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云