You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
/**
|
|
|
|
|
|
* 为了保持多页element组件的样式统一,提供全局配置的方法。
|
|
|
|
|
|
*/
|
|
|
|
|
|
import { ConfigElement } from './types'
|
|
|
|
|
|
|
|
|
|
|
|
const elementConfig: ConfigElement = {
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 尺寸
|
|
|
|
|
|
*/
|
|
|
|
|
|
size: 'medium',
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 层级
|
|
|
|
|
|
*/
|
|
|
|
|
|
zIndex: 2000
|
|
|
|
|
|
}
|
|
|
|
|
|
const haha = ''
|
|
|
|
|
|
export default elementConfig
|