angular-cn/modules/angular2/docs/cheatsheet/directive-configuration.md

22 lines
665 B
Markdown
Raw Normal View History

2015-11-06 07:26:24 -05:00
@cheatsheetSection
Directive configuration
@cheatsheetIndex 5
2015-11-06 07:26:24 -05:00
@description
{@target js ts}`@Directive({ property1: value1, ... })`{@endtarget}
{@target dart}`@Directive(property1: value1, ...)`{@endtarget}
2015-11-05 10:04:55 -05:00
@cheatsheetItem
syntax:
2015-11-05 10:04:55 -05:00
`selector: '.cool-button:not(a)'`|`selector:`
description:
Specifies a CSS selector that identifies this directive within a template. Supported selectors include `element`,
2015-11-05 10:04:55 -05:00
`[attribute]`, `.class`, and `:not()`.
Does not support parent-child relationship selectors.
@cheatsheetItem
syntax:
2015-11-05 10:04:55 -05:00
`providers: [MyService, provide(...)]`|`providers:`
description:
Array of dependency injection providers for this directive and its children.