我开始了一个新的JHipster项目。我之前使用过角度2,但我无法弄清楚为什么我的新组件都没有显示出来。
使用Angular v4.2.6
我做了以下事情:
结果:
rahan.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'jhi-rahan',
templateUrl: './rahan.component.html',
styles: []
})
export class RahanComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
rahan.component.html
<p>
rahan works!
</p>
home.component.html
<div class="row">
<jhi-rahan></jhi-rahan>
</div>
app.module.ts
declarations: [
...,
RahanComponent
如果我检查这样的其他元素,我可以看到它:<jhi-file-upload></jhi-file-upload>
但是它没有子元素而且它永远不会被渲染。
我确定我错过了什么。知道什么吗?