UNPKG

@heartlee/element-components

Version:

a component library for Vue 3 base on element-plus. Forked from element-pro-components. 根据业务需求自用,如需使用,请移步官方仓库使用

10 lines (9 loc) 326 B
import { ComputedRef, Ref } from 'vue'; import type { IColProps } from '../types/index'; export declare function useCol(props: Readonly<IColProps> | IColProps | Ref<IColProps>): { colStyle: ComputedRef<{ paddingLeft?: string; paddingRight?: string; }>; colClass: ComputedRef<string[]>; };