fix(Area): areaProps omit allow-html show-toolbar (#11871)

This commit is contained in:
Zhousg 2023-05-17 22:14:02 +08:00 committed by GitHub
parent e457bc2265
commit 71de1ad079
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ import type { PickerExpose } from '../picker/types';
const [name, bem] = createNamespace('area');
export const areaProps = extend({}, pickerSharedProps, {
export const areaProps = extend({}, pick(pickerSharedProps, INHERIT_PROPS), {
modelValue: String,
columnsNum: makeNumericProp(3),
columnsPlaceholder: makeArrayProp<string>(),