angular4+的动画模块变化

前端之家收集整理的这篇文章主要介绍了angular4+的动画模块变化前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

猜你在找的Angularjs相关文章