-1
我有一個組件使用組件在另一個組件中ionic2
import { Component } from '@angular/core';
@Component({
selector: 'footer-component',
templateUrl: 'footer.html'
})
export class FooterComponent {}
,並想使用另一種一個像
<ion-content>
Hello
<footer-component><footer-component/>
</ion-content>
我都在我的「@NgModule」補充道。不幸的是我得到這個錯誤:
directive_normalizer.js:92Uncaught Error: Template parse errors: Only void and foreign elements can be self closed "footer-component"
你知道爲什麼嗎?
有時你花這麼多時間去做那種容易的事情......謝謝! –