我只能找到使用打字稿的例子。我试过用 ng.core.Component 嵌套 ng.Router.RouteConfig。
(function(app) {
app.AppComponent = ng.core.Component({
selector: "my-app",
directives: [ng.router.RouterLink, ng.router.RouterOutlet],
template: '<h1>Loading</h1>'
}).Class({
constructor: function() {
}
}).ng.router.RouteConfig([{
path: '/',
redirectTo: ['/index.html'],
path: '/home',
component: app.HomeCmp,
as: 'Home'
}])
})(window.app || (window.app = {}));
它不起作用,我不知道如何以及在哪里导入与路由相关的指令。
有谁知道如何使用javascript来做到这一点?