Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/api/application-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ app.directive('my-directive', {
mounted() {},
// called before the containing component's VNode is updated
beforeUpdate() {},
// called after the containing component's VNode and the VNodes of its children // have updated
// called after the containing component's VNode and the VNodes of its children have updated
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// called after the containing component's VNode and the VNodes of its children have updated
// called after the containing component's VNode and the VNodes of its
// children have updated

I think this may have been mucked up by an auto-formatter. I believe that comment is supposed to be split over two lines so that it doesn't trigger a horizontal scrollbar.

updated() {},
// called before the bound element's parent component is unmounted
beforeUnmount() {},
Expand Down