I'm curious if there's a way to loop through imported objects?
import { Row, Col, Form, FormItem, Icon, Input, Tooltip, Image, Button, Dialog } from 'element-ui'
objects.forEach(object => {
// do something here
})
When I have a large number of objects to import, the code starts getting very lengthy. I'd prefer not to use
import ElementUI from 'element-ui'
either.