1. 程式人生 > >[轉] can not find module @angular/animations/browser

[轉] can not find module @angular/animations/browser

https imp npm .net all orm tail 模塊 升級

本文轉自:https://blog.csdn.net/yaerfeng/article/details/68956298

angularjs4升級了,原來的animations現在被單獨出來一個包。

package.json中添加

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

npm install

在相應的模塊或者app.module.ts中添加

import { BrowserAnimationsModule } from ‘@angular/platform-browser/animations‘; imports: [ BrowserAnimationsModule ],

--------------------- 本文來自 yaerfeng 的CSDN 博客 ,全文地址請點擊:https://blog.csdn.net/yaerfeng/article/details/68956298?utm_source=copy

[轉] can not find module @angular/animations/browser