Vue.Draggable
Vue.Draggable copied to clipboard
Need es modules version ,vite error during build that Unexpreted token: global.core = core
First check https://github.com/SortableJS/Vue.Draggable/blob/master/CONTRIBUTING.md
Jsfiddle link
Step by step scenario
Actual Solution
Expected Solution
When using vite, you can change the rollup options (in vite.config.ts) to leave vuedraggable external:
build: {
rollupOptions: {
external: [
"vuedraggable"
]
}
}