[DOC] component: remove misleading order on willUnmount

Some hooks call order are clearly defined: `[willX]` hooks are
called first on parent, then on children, and `[Xed]` are called in
the reverse order: first children, then parent.

This is also true for `willUnmount`: first on parent, then on
children.
This commit is contained in:
Alexandre Kühn
2019-05-04 13:50:43 +02:00
committed by Géry Debongnie
parent eb508b7660
commit ec0bafaa8e
+1 -2
View File
@@ -312,5 +312,4 @@ the DOM. This is a good place to remove some listeners, for example.
}
```
This is the opposite method of `mounted`. The `willUnmount` method will be
called in reverse order: first the children, then the parents.
This is the opposite method of `mounted`.