user1275105
user1275105

Reputation: 2753

How does the app know a component is a page

Now that the @Page decorator had been deprecated, how does the app differentiate between a component that should be used as part of a page and a component that represents a page you can navigate to?

The only difference I see that page components have no selector property defined in the @Component decorator.

Upvotes: 5

Views: 337

Answers (1)

Yaron Schwimmer
Yaron Schwimmer

Reputation: 5357

A component is considered to be a page if it's pushed to the navigation controller's stack.

A selector property is optional in an Angular2 component. You only need it when you want to use the component as an HTML element in the template of another component.

I think the reason @Page was deprecated, is that there wasn't so much difference between the two in the first place.

Upvotes: 5

Related Questions