在尝试编译以下Angular组件时,我从TypeScript得到了预期的分号错误。
对我来说似乎很好,但只有当我添加this.$routeConfig
数组时才会抛出错误:
export class AppComponent implements ng.IComponentOptions {
public template: string;
public $routeConfig: Array<any>;
constructor(){
this.template = `<h1>Home</h1>
<ng-outlet></ng-outlet>`;
this.$routeConfig: [{
path: '/',
component: 'loginComponent',
name: 'Login',
useAsDefault: true
}];
}
}
答案 0 :(得分:0)
刚认识我的小学生&#39;错误!
应为this.$routeConfig = [];