vuestic-ui
Version:
Vue 3 UI Framework
16 lines (15 loc) • 661 B
JavaScript
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