Angular自定义组件创建步骤
1.创建组件class
自己创建一个.ts文件 Component装饰器(Decorator)用于指定class的用法 selector:选择器
代码语言:javascript复制import { Component } from "@angular/core";
//装饰器(Decorator)用于指定class的用法
@Component({
template:'<h2>我的组件c01</h2><hr>',
//选择器
//[myTitle]就是当属性来用
//myc01当元素来用
selector:'myc01',
})
export class MyC01Component{
}
2.接下来需要在某一个模块中注册组件class
在一个app.modle.ts文件中注册
代码语言:javascript复制import { MyC01Component } from './myc01';
@NgModule({
declarations: [ //宣言,声明,宣
MyC01Component, //宣言声明完成
],
3.使用已经注册过的组件
在一个.html文件中使用
代码语言:javascript复制<myc01></myc01>