我正在尝试在 v1.4 中使用 Angular 新路由器。我正在使用打字稿。当我尝试编译时,出现以下错误。
Property '$routeConfig' does not exist on type '($router: any) => void'
这是我的代码
/// <reference path="../Scripts/typings/angularjs/angular.d.ts"/>
/// <reference path="../Scripts/typings/angularjs/angular-route.d.ts"/>
module Application {
"use strict";
angular.module("app", ['ngNewRouter']);
export var getModule: () => ng.IModule = () => {
return angular.module("app");
}
getModule().controller('AppController', ['$router', AppController]);
AppController.$routeConfig = [{
path: '/',
component: 'home'
}, {
path: '/detail/:id',
component: 'detail'
}, {
path: '/login',
component: 'login'
}];
function AppController($router) {
}
}
任何帮助表示赞赏。谢谢。