23 lines
536 B
Plaintext
23 lines
536 B
Plaintext
|
|
.l-main-section
|
|
h2 onDestroy <span class="type">variable</span>
|
|
p(class="module") exported from <a href="/angular2/annotations">angular2/annotations</a>
|
|
|
|
:markdown
|
|
Notify a directive whenever a <a href="angular2/annotations/View-class"><code>View</code></a> that contains it is destroyed.
|
|
|
|
## Example
|
|
|
|
```
|
|
@Decorator({
|
|
...,
|
|
lifecycle: [onDestroy]
|
|
})
|
|
class ClassSet {
|
|
onDestroy() {
|
|
// invoked to notify directive of the containing view destruction.
|
|
}
|
|
}
|
|
```
|
|
|