Import specific parts of lodash where possible

This commit is contained in:
Oliver Davies 2019-06-25 00:38:04 +01:00
parent f19d85b17a
commit 8e17cc3103
3 changed files with 6 additions and 6 deletions

View file

@ -14,7 +14,7 @@
</template>
<script>
import _ from 'lodash'
import reverse from 'lodash/reverse'
import TaskLogItem from '@/components/Environment/TaskLog/TaskLogItem'
export default {
@ -30,7 +30,7 @@ export default {
reversedTasks: function () {
let tasks = this.tasks
return _.reverse(tasks)
return reverse(tasks)
}
}
}

View file

@ -20,7 +20,7 @@
</template>
<script>
import _ from 'lodash'
import { omitBy, _ } from 'lodash'
export default {
props: {
@ -31,7 +31,7 @@ export default {
filteredLinks: function () {
let links = this.links
return _.omitBy(links, _.isEmpty)
return omitBy(links, _.isEmpty)
}
}
}