このリンクから ng2 スマート テーブルを学習しようとしていますが、このエラーが発生しました。
キャッチされないエラー: 予期しないモジュール 'Ng2SmartTableModule' がモジュール 'AppModule' によって宣言されました。@Pipe/@Directive/@Component アノテーションを追加してください。
ここに app.component.ts があります
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
//templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
//template: `<ng2-smart-table [settings]="settings"></ng2-smart-table>`
})
export class AppComponent {
//title = 'app';
settings = {
columns: {
id: {
title: 'ID'
},
name: {
title: 'Full Name'
},
username: {
title: 'User Name'
},
email: {
title: 'Email'
}
}
};
}
そして app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { Ng2SmartTableModule } from 'ng2-smart-table';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent,
Ng2SmartTableModule
],
imports: [
BrowserModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
誰でもこのエラーを修正できますか?
前もって感謝します。