-
-
Save fpontef/def02f0820dd3f51bc8e7e5e672596a0 to your computer and use it in GitHub Desktop.
Revisions
-
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ const stringfy = (value) => JSON.stringify([value]); const stringfyAndTransformToObject = (value) => ({ object: stringfy(value) }) const makeRequest = () => { const context = arguments[0] || this; const post = (url, data, options) => context.$http(url, stringfyAndTransformToObject(data), options); return { post }; }; const install = (VueInstance) => { Object.defineProperties(VueInstance.prototype, { $request: { get() { return makeLoader(this); }, }, }); }; export default { install };