- // Annotation section
- @Component({
- selector: 'my-app'
- })
- @View({
- })
- // Component controller
- class MyAppComponent {
- name: string;
- constructor() {
- this.name = 'Alice';
- }
- }
// Annotation section @Component({ selector: 'my-app' }) @View({ }) // Component controller class MyAppComponent { name: string; constructor() { this.name = 'Alice'; } }