UNPKG

element-pro-components

Version:

a component library for Vue 3 base on element-plus

12 lines (11 loc) 348 B
import { ComputedRef } from 'vue'; import type { RowProps } from 'element-plus'; type IRowProps = Partial<Omit<RowProps, 'tag'>>; export declare function useRow(props: Readonly<IRowProps> | IRowProps): { rowStyle: ComputedRef<{ marginLeft: string; marginRight: string; }>; rowClass: ComputedRef<string[]>; }; export {};