赞
踩
- // 引入element-ui
- import ElementUI from 'element-ui'
-
- // 表单默认尺寸
- ElementUI.Form.props.size.default = 'small'
-
-
- // 按钮默认尺寸
- ElementUI.Button.props.size.default = 'small'
- // 表格样式
- ElementUI.Table.props.headerCellStyle.default = () => {
- return {
- border: "0",
- background: "#F2F4F7",
- color: "#333333",
- fontWeight: "700",
- userSelect: "text",
- };
- }
- ElementUI.Table.props.cellStyle.default = () => {
- return {
- padding: "6px 0",
- border: "0",
- borderBottom: "1px solid #EBEDF0"
- };
- }
- ElementUI.Table.props.rowStyle.default = () => {
- return {
- height: "40px"
- };
- }

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。