2
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Angular2のIE対応

Last updated at Posted at 2016-12-20

Angular2のIE対応

IEでは下記2点が動作しないです。

  1. アニメーションが動作しません。
  2. バリデーション周りが動作しません。

対処方法

下記2点のJSを読み込ませれば対応完了となります。

index.html
<script src="node_modules/systemjs/dist/system-polyfills.src.js"></script>
<script src="node_modules/web-animations-js/web-animations.min.js"></script>
package.json
"dependencies": {
  "web-animations-js": "2.2.1"
}

サンプルコード

2
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?