[Vuejs]-Vue Draggable Next missing template or render function

4👍

I finally found the solution to the problem!

You need to replace this line

app.component("draggable", VueDraggableNext);

with this line

app.component("draggable", VueDraggableNext["VueDraggableNext"]);
👤Jakbac

Leave a comment