Add URLSearchParams polyfill

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2019-10-26 12:39:42 +02:00
parent f68a94e920
commit 334d88aec6
3 changed files with 8 additions and 0 deletions

5
package-lock.json generated
View File

@@ -17094,6 +17094,11 @@
} }
} }
}, },
"url-search-params-polyfill": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/url-search-params-polyfill/-/url-search-params-polyfill-7.0.0.tgz",
"integrity": "sha512-0SEH3s+wCNbxEE/rWUalN004ICNi23Q74Ksc0gS2kG8EXnbayxGOrV97JdwnIVPKZ75Xk0hvKXvtIC4xReLMgg=="
},
"use": { "use": {
"version": "3.1.1", "version": "3.1.1",
"resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",

View File

@@ -34,6 +34,7 @@
"nextcloud-axios": "^0.2.1", "nextcloud-axios": "^0.2.1",
"nextcloud-server": "^0.15.10", "nextcloud-server": "^0.15.10",
"nextcloud-vue-collections": "^0.6.0", "nextcloud-vue-collections": "^0.6.0",
"url-search-params-polyfill": "^7.0.0",
"vue": "^2.6.7", "vue": "^2.6.7",
"vue-click-outside": "^1.0.7", "vue-click-outside": "^1.0.7",
"vue-color": "^2.7.0", "vue-color": "^2.7.0",

View File

@@ -20,6 +20,8 @@
* *
*/ */
import 'url-search-params-polyfill';
import Vue from 'vue' import Vue from 'vue'
import Vuex from 'vuex' import Vuex from 'vuex'
import axios from 'nextcloud-axios' import axios from 'nextcloud-axios'