Angular 4.2.6 CLI生成的组件永远不会呈现

时间:2017-08-18 08:00:42

标签: java spring angular typescript jhipster

我开始了一个新的JHipster项目。我之前使用过角度2,但我无法弄清楚为什么我的新组件都没有显示出来。

使用Angular v4.2.6

我做了以下事情:

  • 使用jhipster创建应用程序
  • 使用CLI
  • 创建新组件

结果:

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>但是它没有子元素而且它永远不会被渲染。

我确定我错过了什么。知道什么吗?

0 个答案:

没有答案