Angular : 创建自定义组件

  1. ng generate hello-world 命令生成 hello-world 组件

    Angular : 创建自定义组件_第1张图片

  2. 在hello-world.component.ts中定义组件

    Angular : 创建自定义组件_第2张图片

    代码贴在文章末尾:代码1

  3. 在app.component.html中使用刚定义好的组件(标签)

    Angular : 创建自定义组件_第3张图片

    代码贴在文章末尾:代码2

  • 代码1

import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-hello-world',
  template:
        `

hello-world works!

` }) export class HelloWorldComponent implements OnInit { constructor() { } ngOnInit() { } }

  • 代码2

import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  title = 'app';
}

你可能感兴趣的:(Angular2)