UNPKG

@varlet/ui

Version:

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

14 lines (13 loc) 292 B
import { useParent } from "@varlet/use"; import { ROW_BIND_COL_KEY } from "../row/provide.mjs"; function useRow() { const { index, bindParent, parentProvider } = useParent(ROW_BIND_COL_KEY); return { index, row: parentProvider, bindRow: bindParent }; } export { useRow };