Angular2与Bootstrap、Jquery集成方法

前端之家收集整理的这篇文章主要介绍了Angular2与Bootstrap、Jquery集成方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、在工程目录下面安装以下两个包 npm install -S jquery bootstrap 2、将这两个第三方框架放入到依赖中去 npm install -D @types/jquery @types/bootstrap 3、修改.angular-cli.json文件 "styles": [ "styles.css","../node_modules/bootstrap/dist/css/bootstrap.min.css" ],"scripts": [ "../node_modules/jquery/dist/jquery.js","../node_modules/bootstrap/dist/js/bootstrap.js" ],4、修改tsconfig.app.json文件 "types": [ "jquery","bootstrap" ]

原文链接:https://www.f2er.com/angularjs/147537.html

猜你在找的Angularjs相关文章