can not find module @angular/animations/browser

前端之家收集整理的这篇文章主要介绍了can not find module @angular/animations/browser前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

angularjs4升级了,原来的animations现在被单独出来一个包。

package.json中添加

"dependencies":{
"@angular/animations": "^4.0.1",
}

npm install

在相应的模块或者app.module.ts中添加

import{ BrowserAnimationsModule} from '@angular/platform-browser/animations';
imports:[
BrowserAnimationsModule
],
原文链接:https://www.f2er.com/angularjs/147608.html

猜你在找的Angularjs相关文章