Skip to content
This repository has been archived by the owner on May 9, 2022. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
surmon committed Dec 24, 2017
1 parent 0bb32d9 commit 848b657
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import dragZone from './zone.vue'
import dragHandle from './handle.vue'
import dragContent from './content.vue'

const install = Vue => {
const install = function (Vue) {
Vue.component(dragZone.name, dragZone)
Vue.component(dragHandle.name, dragHandle)
Vue.component(dragContent.name, dragContent)
}
const VueDragZone = { dragZone, dragHandle, dragContent, install }
const VueDragZone = { dragZone, dragHandle, dragContent, install };

export default VueDragZone
export { dragZone, dragHandle, dragContent, install }

0 comments on commit 848b657

Please sign in to comment.