mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* refactor(components): [visual-hidden] visual-hidden * refactor(components): [visual-hidden] visual-hidden
10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
import { buildProps, definePropType } from '@element-plus/utils'
|
|
import type { StyleValue } from 'vue'
|
|
|
|
export const visualHiddenProps = buildProps({
|
|
style: {
|
|
type: definePropType<StyleValue>([String, Object, Array]),
|
|
default: () => ({}),
|
|
},
|
|
} as const)
|