UNPKG

bootstrap-vue-next

Version:

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

10 lines (9 loc) 260 B
import { computed, toValue } from "vue"; const useAlignment = (align) => computed(() => { const value = toValue(align); return !value ? "" : `justify-content-${value}`; }); export { useAlignment as u }; //# sourceMappingURL=useAlignment-Cw-9AVid.mjs.map