UNPKG

bootstrap-vue-next

Version:

Seamless integration of Vue 3, Bootstrap 5, and TypeScript for modern, type-safe UI development

10 lines (9 loc) 309 B
import { computed, toValue } from "vue"; //#region src/composables/useAlignment.ts var useAlignment = (align) => computed(() => { const value = toValue(align); return !value ? "" : `justify-content-${value}`; }); //#endregion export { useAlignment as t }; //# sourceMappingURL=useAlignment-DMST4-tc.mjs.map