创建组件
约 91 字小于 1 分钟
2026-09-16
在 Angular 中, 每个组件都是一个 类, 他和 React 和 Vue 的推荐方式还是不一样的。
推荐的方式是通过 templateUrl 来指定组件的模板, 而不是直接在 template 中写 HTML。
style 也是一样的
import { Component } from '@angular/core'
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: './app.component.css'
})
export class AppComponent {
title = 'angular'
}