We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89177dc commit 0eb5157Copy full SHA for 0eb5157
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "vue-draggable-next",
3
- "version": "1.0.7",
+ "version": "1.0.8",
4
"description": "",
5
"main": "dist/vue-draggable-next.cjs.js",
6
"browser": "dist/vue-draggable-next.esm.js",
src/VueDraggableNext.ts
@@ -179,7 +179,10 @@ export const VueDraggableNext = defineComponent({
179
},
180
181
beforeUnmount() {
182
- if (this._sortable !== undefined) this._sortable.destroy()
+ try {
183
+ if (this._sortable !== undefined) this._sortable.destroy()
184
+ } catch (error) {
185
+ }
186
187
188
computed: {
0 commit comments