我开始使用@ angular / material 2.0.0 beta。 10 ,对我来说工作正常。
现在我正在尝试升级到测试版。 12 。
npm安装已成功,我更改了模块中的导入 从 Md FormFieldModule到 Mat FormFieldModule也已成功。
问题是我现在正在尝试更改html:
<md-form-field>
<input mdInput placeholder="Name">
</md-form-field>
为:
<mat-form-field>
<input matInput placeholder="Name">
</mat-form-field>
当我运行它时,我收到错误
错误:(SystemJS)模板解析错误
没有细节。
知道为什么吗?我错过了什么?
答案 0 :(得分:0)
我找到了这个导入的答案:
import {MatFormFieldModule} from "@angular/material/typings/form-field"
我只能在材料级别导入:
import {MatFormFieldModule} from "@angular/material"