angular-cn/modules/angular2/docs/cheatsheet/class-decorators.md

27 lines
699 B
Markdown
Raw Normal View History

2015-11-06 07:26:24 -05:00
@cheatsheetSection
Class decorators
@cheatsheetIndex 4
2015-11-05 10:04:55 -05:00
@description
`import {Directive, ...} from 'angular2/angular2';`
@cheatsheetItem
syntax:
2015-11-05 10:04:55 -05:00
`@Component({...})
class MyComponent() {}`|`@Component({...})`
description:
2015-11-05 10:04:55 -05:00
Declares that a class is a component and provides metadata about the component.
@cheatsheetItem
syntax:
2015-11-05 10:04:55 -05:00
`@Pipe({...})
class MyPipe() {}`|`@Pipe({...})`
description:
2015-11-05 10:04:55 -05:00
Declares that a class is a pipe and provides metadata about the pipe.
@cheatsheetItem
syntax:
2015-11-05 10:04:55 -05:00
`@Injectable()
class MyService() {}`|`@Injectable()`
description:
2015-11-05 10:04:55 -05:00
Declares that a class has dependencies that should be injected into the constructor when the dependency
injector is creating an instance of this class.