UNPKG

element-plus

Version:

A Component Library for Vue 3

54 lines (51 loc) 1.21 kB
import '../../../constants/index.mjs'; import '../../../utils/index.mjs'; import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs'; import { componentSizes } from '../../../constants/size.mjs'; import { isArray, isString } from '@vue/shared'; import { isBoolean } from '@vueuse/core'; const formProps = buildProps({ model: Object, rules: { type: definePropType(Object) }, labelPosition: { type: String, values: ["left", "right", "top"], default: "right" }, labelWidth: { type: [String, Number], default: "" }, labelSuffix: { type: String, default: "" }, inline: Boolean, inlineMessage: Boolean, statusIcon: Boolean, showMessage: { type: Boolean, default: true }, size: { type: String, values: componentSizes }, disabled: Boolean, validateOnRuleChange: { type: Boolean, default: true }, hideRequiredAsterisk: { type: Boolean, default: false }, scrollToError: Boolean }); const formEmits = { validate: (prop, isValid, message) => (isArray(prop) || isString(prop)) && isBoolean(isValid) && isString(message) }; export { formEmits, formProps }; //# sourceMappingURL=form.mjs.map