Skip to content

Commit b1a4fda

Browse files
author
shangbin
committed
fix: 修复一直以来的生命周期错误
1 parent 56ebbba commit b1a4fda

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

src/components-v2/ToolsBar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default {
6565
mounted() { },
6666
beforeUpdate() { },
6767
updated() { },
68-
destoryed() { },
68+
destroyed() { },
6969
methods: {
7070
// 在此自动生成
7171
request() {

src/components-v2/VCC.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export default {
152152
},
153153
beforeUpdate() { },
154154
updated() { },
155-
destoryed() { },
155+
destroyed() { },
156156
methods: {
157157
convertLogicCode(JSCode) {
158158
try {

src/components/Code.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export default {
8989
mounted() { },
9090
beforeUpdate() { },
9191
updated() { },
92-
destoryed() { },
92+
destroyed() { },
9393
methods: {
9494
release() {
9595
this.loading = true;

src/components/CodeStructure.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default {
5555
},
5656
beforeUpdate() { },
5757
updated() { },
58-
destoryed() { },
58+
destroyed() { },
5959
methods: {
6060
6161
onNodeClick(nodeInfo) {

src/components/JSCodeEditorDialog.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default {
7979
mounted() { },
8080
beforeUpdate() { },
8181
updated() { },
82-
destoryed() { },
82+
destroyed() { },
8383
methods: {
8484
updateLogicCode(newCode) {
8585
if (newCode) {

src/components/VueCodeParseDialog.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default {
4242
mounted() { },
4343
beforeUpdate() { },
4444
updated() { },
45-
destoryed() { },
45+
destroyed() { },
4646
methods: {
4747
handleClose() {
4848
this.$emit("update:vueDialogVisible", false);

src/libs/bundle-core-esm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ const scriptTemplate = `{
414414
mounted() {},
415415
beforeUpdate() {},
416416
updated() {},
417-
destoryed() {},
417+
destroyed() {},
418418
methods: {
419419
request() {
420420
},

src/rawComponents/antd/button.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default {
3939
mounted() { },
4040
beforeUpdate() { },
4141
updated() { },
42-
destoryed() { },
42+
destroyed() { },
4343
methods: {
4444
request() { },
4545
onButtonClick() { },

src/rawComponents/antd/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export default {
3030
},
3131
beforeUpdate() { },
3232
updated() { },
33-
destoryed() { },
33+
destroyed() { },
3434
methods: {
3535
request() { },
3636
onButtonClick() { },

src/rawComponents/quasar/base.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default {
3636
mounted() { },
3737
beforeUpdate() { },
3838
updated() { },
39-
destoryed() { },
39+
destroyed() { },
4040
methods: {
4141
// 在此自动生成
4242
request() {

src/rawComponents/quasar/button.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export default {
5858
mounted() { },
5959
beforeUpdate() { },
6060
updated() { },
61-
destoryed() { },
61+
destroyed() { },
6262
methods: {
6363
// 在此自动生成
6464
request() {

src/rawComponents/quasar/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default {
2222
mounted() { },
2323
beforeUpdate() { },
2424
updated() { },
25-
destoryed() { },
25+
destroyed() { },
2626
methods: {
2727
// 在此自动生成
2828
request() {

src/test/compileVueOnline.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default {
3636
},
3737
beforeUpdate: () => { },
3838
updated: () => { },
39-
destoryed: () => { },
39+
destroyed: () => { },
4040
methods: {
4141
async compile() {
4242
const obj = await html2Json(this.code);

0 commit comments

Comments
 (0)