完全跑通1.0版本
This commit is contained in:
28
frontend/node_modules/element-plus/es/components/button/src/button-group.mjs
generated
vendored
Normal file
28
frontend/node_modules/element-plus/es/components/button/src/button-group.mjs
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
import { definePropType } from "../../../utils/vue/props/runtime.mjs";
|
||||
import { buttonProps } from "./button.mjs";
|
||||
//#region ../../packages/components/button/src/button-group.ts
|
||||
/**
|
||||
* @deprecated Removed after 3.0.0, Use `ButtonGroupProps` instead.
|
||||
*/
|
||||
const buttonGroupProps = {
|
||||
/**
|
||||
* @description control the size of buttons in this button-group
|
||||
*/
|
||||
size: buttonProps.size,
|
||||
/**
|
||||
* @description control the type of buttons in this button-group
|
||||
*/
|
||||
type: buttonProps.type,
|
||||
/**
|
||||
* @description display direction
|
||||
*/
|
||||
direction: {
|
||||
type: definePropType(String),
|
||||
values: ["horizontal", "vertical"],
|
||||
default: "horizontal"
|
||||
}
|
||||
};
|
||||
//#endregion
|
||||
export { buttonGroupProps };
|
||||
|
||||
//# sourceMappingURL=button-group.mjs.map
|
||||
Reference in New Issue
Block a user