使用Angular 1.5组件的Typescript编译器错误预期是分号

时间:2016-05-16 07:55:57

标签: javascript angularjs typescript components

在尝试编译以下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
        }];
    }
}

1 个答案:

答案 0 :(得分:0)

刚认识我的小学生&#39;错误!

应为this.$routeConfig = [];