This commit is contained in:
2026-01-05 12:47:14 +08:00
commit 1fc846fae3
1614 changed files with 162035 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import type { ExtractPropTypes } from 'vue'
import { commonProps, makeNumericProp } from '../_utils'
export const colProps = {
...commonProps,
/**
* @description 列元素宽度(共分为 24 份例如设置一行3个那么 `span` 值为 8
*/
span: makeNumericProp(24),
/**
* @description 列元素偏移距离
*/
offset: makeNumericProp(0),
}
export type ColProps = ExtractPropTypes<typeof colProps>