ElementUI 在 按需引入时定义 default size?

import Vue from 'vue'import Element from 'element-ui'import 'element-ui/lib/theme-chalk/index.css'Vue.use(Element, {    size: 'small'})// Fully import, 在 Vue.use 中加 {size: 'small'} 生效

import Vue from 'vue'import { Button, Input } from 'element-ui'const Elements = [Button, Input]

Elements.forEach(key => {
    Vue.use(key, {        size: 'small'
    })
})

两种情况:

  1. 在 Vue 中全量引入时,可以使用 Vue.use(Element, {size: 'small'}) 设置全局组件的默认size。

  2. 在 Vue 中按需引入时,使用 Vue.use(Button, {size: 'small'}),设置无效。

问题是:在按需引入时 我写的有问题还是不支持组件的默认size定义?




紫衣仙女
浏览 6368回答 1
1回答

米琪卡哇伊

<button size="small"><btton>在标签利用
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Vue.js