import Vue from 'vue'; import 'element-ui/lib/theme-default/index.css'; import { Button, Input } from 'element-ui'; const Elements = [Button, Input]; Elements.forEach(key => { Vue.use(key, { size: 'small' }); });