@netvlies/vue-sylius-bundle
Version:
A bundle of useful api calls / methods for your Sylius projects
30 lines (23 loc) • 873 B
JavaScript
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.VueSyliusBundle = {}));
}(this, (function (exports) { 'use strict';
var SyliusBundle = (function () {
function SyliusBundle(config) {
}
return SyliusBundle;
}());
var install = function (Vue, config) {
if (config) {
Vue.prototype.$sylius = new SyliusBundle(config);
}
};
var plugin = {
install: install,
version: '0.0.1',
};
exports.default = plugin;
Object.defineProperty(exports, '__esModule', { value: true });
})));
//# sourceMappingURL=vue-sylius-bundle.js.map