[Vuejs]-How to use downloaded nodeModule library locally on my Vue project

0👍

Since you are using import, you can do the following.

const draggable = {
 // Your code here
}

export default draggable

Leave a comment