File tree 1 file changed +2
-1
lines changed
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 2
2
@name Directives
3
3
@description
4
4
5
- Directives는 HTML의 새로운 속임수를 알려주는 방법입니다.
5
+ Directives는 HTML의 새로운 속임수를 알려주는 방법입니다.
6
6
Directives are a way to teach HTML new tricks. During DOM compilation directives are matched
7
7
against the HTML and executed. This allows directives to register behavior, or transform the DOM.
8
8
9
9
Angular comes with a built in set of directives which are useful for building web applications but
10
10
can be extended such that HTML can be turned into a declarative domain specific language (DSL).
11
11
12
12
# Invoking directives from HTML
13
+ # HTML에서 Directives를 호출하기.
13
14
14
15
Directives have camel cased names such as `ngBind`. The directive can be invoked by translating
15
16
the camel case name into snake case with these special characters `:`, `-`, or `_`. Optionally the
You can’t perform that action at this time.
0 commit comments