[Vuejs]-Draggable Vue component

1👍

According to the documentation, you’re supposed to import without curly braces {}

import draggable from 'vuedraggable';

Based on how the vuedraggable component is exported, using the curly braces will make the import fail.

See this codesandbox example

👤yoduh

Leave a comment