vue-react-dnd
Version:
Vue Drag and Drop Library based on react-dnd
14 lines (11 loc) • 308 B
JavaScript
export default function registerSource (type, source, manager) {
const registry = manager.getRegistry()
const sourceId = registry.addSource(type, source)
function unregisterSource () {
registry.removeSource(sourceId)
}
return {
handlerId: sourceId,
unregister: unregisterSource
}
}