为什么templateUrl不工作?

时间:2016-01-14 09:14:53

标签: angular angular2-routing angular2-template

为什么templateUrl无法工作在角度2.当我使用模板它工作。它不工作..我的代码是

http://plnkr.co/edit/WI4gK2vbaj4OUX5ImJor?p=preview

import {Component,View} from 'angular2/core';

@Component({
    selector: 'my-app',
//  template: '<div (click)="onclck()">hello</div>'
})

@View({
  templateUrl: 'home/home.html'
});
export class AppComponent {

  onclck(){
    alert('--')
  }

}

2 个答案:

答案 0 :(得分:8)

@View装饰者与export class AppComponent中的app/script.ts之间有一个分号。只需删除它就可以了。

答案 1 :(得分:0)

自动保存可能已关闭,只需尝试保存home.component.html,home.component.ts和app.module.ts文件