mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
17 lines
336 B
TypeScript
17 lines
336 B
TypeScript
import { buildProps } from '@element-plus/utils'
|
|
import type { ExtractPropTypes } from 'vue'
|
|
|
|
export const emptyProps = buildProps({
|
|
image: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
imageSize: Number,
|
|
description: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
} as const)
|
|
|
|
export type EmptyProps = ExtractPropTypes<typeof emptyProps>
|