Skip to content

Commit 59d85fc

Browse files
committed
Include IE11 Object.assign polyfill
1 parent e2a5312 commit 59d85fc

File tree

3 files changed

+23
-6
lines changed

3 files changed

+23
-6
lines changed

package-lock.json

Lines changed: 19 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
}
5050
},
5151
"dependencies": {
52+
"es6-object-assign": "^1.1.0",
5253
"vue-textarea-autosize": "^1.1.1",
5354
"vue-the-mask": "^0.11.1"
5455
},

src/main.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ import FlowForm from './components/FlowForm.vue'
33
import QuestionModel, { QuestionType, ChoiceOption } from './models/QuestionModel'
44
import LanguageModel from './models/LanguageModel'
55

6+
// IE11 Object.assign polyfill
7+
import 'es6-object-assign/auto'
8+
69
// Declare install function executed by Vue.use()
710
export function install(Vue) {
811
if (install.installed) return

0 commit comments

Comments
 (0)