我是npm的新手,目前我正在使用打字稿进行角度项目。我的问题是如何使用http://materializecss.com/中的materialize-css包?我在npm install materialize-css
本地安装了它,但现在我不知道如何继续。我尝试使用简单的<select>
代码并使用$('select').material_select()
进行初始化,但我一直收到此错误error TS2339: Property 'material_select' does not exist on type 'JQuery'
。我还使用npm安装了jQuery。
请帮忙。
问候。
答案 0 :(得分:0)
在index.html文件中添加materialize(js,css,jquery),并在AppComponent
文件中添加:
declare let $ : any;
@Component({
//...
})
export class Appcomponent{
//...
};