Skip to content

Commit 33e5783

Browse files
author
Michael William Le Nguyen
committed
Add IE11 support
1 parent d2b13d7 commit 33e5783

File tree

4 files changed

+1548
-11
lines changed

4 files changed

+1548
-11
lines changed

babel.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset'
4+
]
5+
}

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@
99
},
1010
"dependencies": {
1111
"bootstrap": "4.3.1",
12+
"core-js": "3.4.2",
1213
"material-design-icons": "3.0.1",
1314
"vue": "2.6.10",
1415
"vue-class-component": "6.3.2",
15-
"vue-property-decorator": "7.3.0"
16+
"vue-property-decorator": "7.3.0",
17+
"whatwg-fetch": "3.0.0"
1618
},
1719
"devDependencies": {
20+
"@vue/cli-plugin-babel": "4.0.5",
1821
"@vue/cli-plugin-typescript": "3.5.1",
1922
"@vue/cli-service": "3.5.1",
2023
"tslint-config-standard": "8.0.1",

src/main.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import 'whatwg-fetch'
2+
13
import Vue from 'vue'
24
import App from './App.vue'
35

0 commit comments

Comments
 (0)