Hi! it would be lovely to have in your babel plugin an option to auto-import v-icon with @mdijs.
A real example from my code:
import {
mdiChevronRight,
mdiChevronLeft,
mdiApplication,
mdiHomeOutline,
mdiDatabaseSync,
mdiFileLockOutline,
} from '@mdi/js'
export default {
data() {
return {
mdiChevronRight,
mdiChevronLeft,
mdiApplication,
mdiHomeOutline,
mdiDatabaseSync,
mdiFileLockOutline,
That would save some newcomers "brain-glitch" :) (coming from font icons) and for the rest to worry less about another dependency in the code.
Problem to solve
Hi! it would be lovely to have in your babel plugin an option to auto-import v-icon with @mdijs.
A real example from my code:
Proposed solution
That would save some newcomers "brain-glitch" :) (coming from font icons) and for the rest to worry less about another dependency in the code.