DigitMagazine

Code to update file app.ts with new host events

Dec 17th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. import {Component} from '@angular/core'
  2. import {Hoverer} from './hoverer'
  3. @Component (
  4. {
  5. selector: 'digit',
  6. provider: [],
  7. template:`
  8. <div>
  9. <p hoverer="red">Hi {{name}}</p>
  10. </div>
  11. `,
  12. directives: [hoverer]
  13. }
  14. )
  15. export class App {
  16. constructor() {
  17. this.name = 'digit'
  18. }
  19. }
Add Comment
Please, Sign In to add comment