Route property in Template

In Controller has a property called email ,then the template can use it {{email}} to present value. ex:

export default Ember.Controller.extend({ email:'my@email.com',

But How to dclare a property called email in route then the template can use it {{email}} to present value?

You shouldn’t store state like that off your route, controllers are still part of the API.

My property is in route. Now I new a controller But ,how to read property from route? (I need bind value from template and communicate both route and controller)