vuestic-ui
Version:
Vue 3 UI Framework
14 lines (13 loc) • 408 B
JavaScript
const extractGlobalProperties = (app) => app.config.globalProperties;
const defineGlobalProperty = (app, key, v) => {
const globalProperties = extractGlobalProperties(app);
globalProperties[key] = v;
};
const getGlobalProperty = (app, key) => {
return extractGlobalProperties(app)[key];
};
export {
defineGlobalProperty as d,
getGlobalProperty as g
};
//# sourceMappingURL=global-properties.js.map