angular4的动画模块是独立出去,所以要通过npm来下拉动画模块
npm install -S @angular/animations; [-S : save ]
在app.module.ts中导入动画模块并注册
import {BrowserAnimationsModule} from “@angular/platform-browser/animations”;
// 注册 imports: [ BrowserModule,BrowserAnimationsModule,routing ]
原文链接:https://www.f2er.com/angularjs/144945.html