如何设置角度2材料设计2.0.0-beta.2

时间:2017-03-12 20:26:47

标签: javascript angular material-design angular-material

我正在尝试使用角度材质设计(2.0.0-beta2),但我无法让它发挥作用。例如,如果我尝试使用

<md-input-container>
    <input mdInput name="value">
</md-input-container>

将以下内容添加到app.module.ts

    import {MaterialModule} from '@angular/material';

@NgModule({
    ...
    imports: [ MaterialModule, ...],
    ...
})

但是我收到以下错误:

'md-input-container' is not a known element:

注意:使用上面代码的组件在我的应用程序的某个地方生活了几个模块!

当我还将MdInputContainer添加到声明时,我收到了其他错误:

Type MdInputContainer is part of the declarations of 2 modules: MdInputModule and AppModule!

我想我已经接近了,但我错过了一些东西,任何帮助都会受到赞赏

1 个答案:

答案 0 :(得分:1)

要使用角度材质组件,您需要在正在使用它的模块中导入MaterialModule。仅从父模块导入它不会识别它。