ideaz-element
Version:
<p align="center"> <a href="" target="_blank" rel="noopener noreferrer"> <img src="./docs/public/logo.svg" alt="Ideaz Element" width="180" style="width: 180px;" /> </a> </p>
9 lines (7 loc) • 310 B
TypeScript
import { CSSProperties } from 'vue';
import { FormProps } from '../props';
import { FormColumn } from '../../../types';
export declare function useCol(props: FormProps, formItem: FormColumn): {
colKls: globalThis.ComputedRef<(string | string[])[]>;
colStyle: globalThis.ComputedRef<CSSProperties>;
};