Don't import all of lodash

This commit is contained in:
Vincent Fiduccia 2021-06-18 13:05:55 -07:00
parent f5145d1d73
commit e8a43c40c1
No known key found for this signature in database
GPG Key ID: 2B29AD6BB2BB2582
1 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,9 @@ import CreateEditView from '@/mixins/create-edit-view';
import ResourceTabs from '@/components/form/ResourceTabs';
import Tab from '@/components/Tabbed/Tab';
import InfoBox from '@/components/InfoBox';
import { camelCase, keys, startCase } from 'lodash';
import camelCase from 'lodash/camelCase';
import keys from 'lodash/keys';
import startCase from 'lodash/startCase';
import { findBy } from '@/utils/array';
import { get } from '@/utils/object';