Removed unneeded mixin

This commit is contained in:
Kieran Eglin
2023-12-01 15:19:50 -08:00
parent 88078ff813
commit 9350c5513e
2 changed files with 4 additions and 18 deletions
-12
View File
@@ -1,12 +0,0 @@
export default {
methods: {
buildQuerystring(obj, opts = { includePrefix: false }) {
let querystring = Object
.entries(obj)
.map(([key, val]) => `${encodeURIComponent(key)}=${encodeURIComponent(val)}`)
.join('&')
return (opts.includePrefix ? '?' : '').concat(querystring)
}
}
}