我的index.html设置为
<body>
<my-app>Loading...</my-app>
</body>
我的app.component链接到显示登录信息的templateUrl。 HTML应该有一些彩色背景,一些图像显示输入标签。
ng.core.Component({
selector: 'my-app',
templateUrl: 'app/app.component.html', //directed from root
styleUrls: ['app/app.component.css'] //directed from root
})
唯一认为我的索引会加载的是&#34;正在加载......&#34;一部分。我试图删除它然后它只是空白。
我忘记添加什么来加载我真正想要看到的HTML?
答案 0 :(得分:0)