UNPKG

bootstrap-vue-next

Version:

BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.

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