Ng安装jquery和bootstrap

(1).加到库里,node_moudles(package.json会加上)

npm install jquery –save  安装jquery

npm install bootstrap –save 安装bootstrap

(2).加到项目里

Angular –cli.json

“styles.css”

 “../node_modules/bootstrap/dist/css/bootstrap.css”


“Scripts”(第三方库)

 “../node_modules/jquery/dist/jquery.js”

“../node_modules/bootstrap/dist/js/bootstrap.js”

(3).类型文件安到库里,才能识别$(让st认识这两个东西)

 npminstall @types/jquery --save-dev

npm install @types/bootstrap --save-dev



�=��Eu��

你可能感兴趣的:(Ng安装jquery和bootstrap)