vuestic-ui
Version:
Vue 3 UI Framework
16 lines (15 loc) • 414 B
JavaScript
import { d as defineVuesticPlugin } from "../../vue-plugin/utils/define-vuestic-plugin.mjs";
const VaAppCachePluginKey = Symbol("VaAppCachePlugin");
const CachePlugin = defineVuesticPlugin(() => ({
install(app) {
const cache = {
colorContrast: {}
};
app.provide(VaAppCachePluginKey, cache);
}
}));
export {
CachePlugin as C,
VaAppCachePluginKey as V
};
//# sourceMappingURL=index.mjs.map