diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-05-14 11:46:45 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-05-16 09:50:24 +0200 |
commit | bcffbab6f8afb29c9e5c8ef9861739febdb06a09 (patch) | |
tree | b75148ede02a86873c03a471ba3dbe1a12f64ad8 /settings/src/main.js | |
parent | 549940ddb9643a57a0900aa002b49276e5d20d9b (diff) | |
download | nextcloud-server-bcffbab6f8afb29c9e5c8ef9861739febdb06a09.tar.gz nextcloud-server-bcffbab6f8afb29c9e5c8ef9861739febdb06a09.zip |
IE11 compatibility
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'settings/src/main.js')
-rw-r--r-- | settings/src/main.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/settings/src/main.js b/settings/src/main.js index a03fe1b16e1..e09925a95de 100644 --- a/settings/src/main.js +++ b/settings/src/main.js @@ -3,6 +3,8 @@ import { sync } from 'vuex-router-sync'; import App from './App.vue'; import router from './router'; import store from './store'; +require("babel-polyfill"); + sync(store, router); |