UNPKG

@varlet/ui

Version:

A Vue3 component library based on Material Design 2 and 3, supporting mobile and desktop.

15 lines (14 loc) 314 B
import { useChildren } from "@varlet/use"; const ROW_BIND_COL_KEY = Symbol("ROW_BIND_COL_KEY"); function useCols() { const { length, childProviders: cols, bindChildren } = useChildren(ROW_BIND_COL_KEY); return { length, cols, bindCols: bindChildren }; } export { ROW_BIND_COL_KEY, useCols };