我正在製作一個名爲headerComponent的組件,並在app.component.ts中導入,但獲取網站/ src/app/header/app.headerComponent「 '沒有出口成員‘headerComponent’錯誤我app.headerComponent.ts代碼如下「....沒有導出成員」 - 導入組件(Angular)中的錯誤
import { Component } from '@angular/core';
@Component({
selector: 'header',
templateUrl: './app/header/header.html'
})
export class headerComponent {}
和app.component.ts代碼如下
import { Component } from '@angular/core';
import { headerComponent } from './header/app.headerComponent';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
}
你將它添加到你的'@ NgModule'類似的錯誤? – echonax
如何在NgModule中添加? –
按照官方文檔中的教程:https://angular.io/docs/ts/latest/tutorial/toh-pt1.html – echonax