角度5の材質(5.0.0-rc0)のAngular 5プロジェクト(5.0.0-rc0)にあります。一つ一つの角5材料ディレクティブはすべての材質角度指示は '既知の要素ではない'
マット-XYZを考え出すされている間にデバッグではないではありません知ら要素
ここでは私のapp.moduleが
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { Component } from '@angular/core';
// Import the Http Module and our Data Service
import { DataService } from './data.service';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import 'hammerjs';
import {
MatAutocompleteModule,
...
MatStepperModule
} from '@angular/material';
import { HttpModule } from '@angular/http';
import { CdkTableModule } from '@angular/cdk/table';
import { LandingComponent } from './sandbox/landing/landing.component';
@NgModule({
declarations: [
AppComponent,
LandingComponent
],
imports: [
BrowserModule,
HttpModule
],
exports: [
CdkTableModule,
MatAutocompleteModule,
...
MatTooltipModule,
],
providers: [DataService],
bootstrap: [AppComponent]
})
export class AppModule { }
次のようになります着陸コンポーネントENTはそう
<form class="example-form">
<mat-form-field class="example-full-width">
<input matInput placeholder="Favorite food" value="Sushi">
</mat-form-field>
<mat-form-field class="example-full-width">
<textarea matInput placeholder="Leave a comment"></textarea>
</mat-form-field>
</form>
のようなHTMLを持っており、それは私がそのおそらく小さなまたは愚かな何かを知っているが、私の人生のために、私はそれを
を見つけることができません、次の
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-landing',
templateUrl: './landing.component.html',
styleUrls: ['./landing.component.css']
})
export class LandingComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
です.TSです前もって感謝します!