Skip to content
This repository has been archived by the owner on Feb 16, 2021. It is now read-only.

Commit

Permalink
trim down lodash
Browse files Browse the repository at this point in the history
  • Loading branch information
BrockReece committed Jul 6, 2017
1 parent cebc485 commit 49951da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/FullCalendar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</template>

<script>
import _ from 'lodash'
import defaultsDeep from 'lodash.defaultsdeep'
import 'fullcalendar'
export default {
Expand Down Expand Up @@ -154,7 +154,7 @@
})
})
cal.fullCalendar(_.defaultsDeep(this.config, this.defaultConfig))
cal.fullCalendar(defaultsDeep(this.config, this.defaultConfig))
},
methods: {
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
},
"homepage": "https://github.com/CroudSupport/vue-fullcalendar#readme",
"dependencies": {
"fullcalendar": "^3.3.0"
"fullcalendar": "^3.3.0",
"lodash.defaultsdeep": "^4.6.0"
}
}

0 comments on commit 49951da

Please sign in to comment.