angular自定义组件

Posted loaderman

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angular自定义组件相关的知识,希望对你有一定的参考价值。

https://cli.angular.io/


 

打开终端创建header组件:

ng g component components/header
import { Component, OnInit } from ‘@angular/core‘; /*引入 angular 核心*/

@Component({
  selector: ‘app-header‘, /*使用这个组件的名称*/
  templateUrl: ‘./header.component.html‘, /*html 模板*/
  styleUrls: [‘./header.component.scss‘] /*css 样式*/
})
export class HeaderComponent implements OnInit { /*实现接口*/

  constructor() { }/*构造函数*/

  ngOnInit() {/*初始化加载的生命周期函数*/
  }

}

 

 

以上是关于angular自定义组件的主要内容,如果未能解决你的问题,请参考以下文章

创建自定义的 Angular 模块

如何在片段 xml 中使用自定义组件?

angular自定义组件

Angular - 使用自定义指令加载多个组件返回未定义

为啥 Angular 坚持为组件自定义前缀?

ionic3+angular4开发混合app 之自定义组件