UNPKG

asp-smart-ui-plus-test

Version:

A Component Library for Vue 3

30 lines (27 loc) 519 B
import { buildProps } from 'element-plus/es/utils/index'; import { useSizeProp } from 'element-plus/es/hooks/index'; const descriptionProps = buildProps({ border: { type: Boolean, default: false }, column: { type: Number, default: 3 }, direction: { type: String, values: ["horizontal", "vertical"], default: "horizontal" }, size: useSizeProp, title: { type: String, default: "" }, extra: { type: String, default: "" } }); export { descriptionProps };