UNPKG

vuestic-ui

Version:
16 lines (15 loc) 414 B
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