在使用 Angular 特性的类上添加 @Component 或 @Injectable 装饰器。
示例代码:
import { Component } from '@angular/core';
@Component({
selector: 'app-my-component',
template:
})
export class MyComponent {
// ...
}Hello world
import { Injectable } from '@angular/core';
@Injectable({ providedIn: 'root' }) export class MyService { // ... }