vue中如何全局设置ElementUI的组件的尺寸

非常简单

一、在main.js中引入Cookies

import Cookies from 'js-cookie'

二、在main.js中引入Element

import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';

三、关键点,在main.js中应用的同时进行配置

Vue.use(Element, {
  size: Cookies.get('size') || 'small' // set element-ui default size
})

好啦,这样就可以了,需要的小伙伴可以试着配置一下,别忘了点赞关注哦,谢谢!

Logo

前往低代码交流专区

更多推荐