UNPKG

vuestic-ui

Version:
16 lines (15 loc) 661 B
import { c as createBreakpointConfigPlugin } from "./create-service.mjs"; import { v as vaBreakpointSymbol } from "../index.mjs"; import { d as defineVuesticPlugin } from "../../vue-plugin/utils/define-vuestic-plugin.mjs"; import { d as defineGlobalProperty } from "../../vue-plugin/utils/global-properties.mjs"; const BreakpointConfigPlugin = defineVuesticPlugin(() => ({ install(app) { const breakpointConfig = createBreakpointConfigPlugin(app); app.provide(vaBreakpointSymbol, breakpointConfig); defineGlobalProperty(app, "$vaBreakpoint", breakpointConfig); } })); export { BreakpointConfigPlugin as B }; //# sourceMappingURL=index.mjs.map