migrate beforeDestroy to beforeUnmount

This commit is contained in:
Philipp Kühn
2021-08-25 18:36:11 +02:00
parent 8a5a491d8e
commit e0016c40e9
76 changed files with 76 additions and 76 deletions

View File

@@ -128,7 +128,7 @@ export default {
},
},
beforeDestroy() {
beforeUnmount() {
this.editor.destroy()
this.anotherEditor.destroy()
},

View File

@@ -133,7 +133,7 @@ export default {
})
},
beforeDestroy() {
beforeUnmount() {
this.editor.destroy()
},
}

View File

@@ -57,7 +57,7 @@ export default {
})
},
beforeDestroy() {
beforeUnmount() {
this.editor.destroy()
},
}

View File

@@ -47,7 +47,7 @@ export default {
},
},
beforeDestroy() {
beforeUnmount() {
this.editor.destroy()
},
}

View File

@@ -77,7 +77,7 @@ export default {
})
},
beforeDestroy() {
beforeUnmount() {
this.editor.destroy()
},
}

View File

@@ -236,7 +236,7 @@ export default {
})
},
beforeDestroy() {
beforeUnmount() {
this.editor.destroy()
},
}

View File

@@ -42,7 +42,7 @@ export default {
})
},
beforeDestroy() {
beforeUnmount() {
this.editor.destroy()
},
}

View File

@@ -55,7 +55,7 @@ export default {
})
},
beforeDestroy() {
beforeUnmount() {
this.editor.destroy()
},
}

View File

@@ -132,7 +132,7 @@ export default {
},
},
beforeDestroy() {
beforeUnmount() {
this.title.destroy()
this.tasks.destroy()
this.description.destroy()

View File

@@ -33,7 +33,7 @@ export default {
})
},
beforeDestroy() {
beforeUnmount() {
this.editor.destroy()
},
}