I have about 20 forms which get switched using a dynamic component
<component v-bind:is="activeForm"></component
Rather than have about 20 of these
import Concentform from '../forms/concentForm'
and 20 declarations
export default {
components: {
Concentform,
anotherForm,
moreForms,
}
}
Can I do a mass import?