Skip to content

Commit

Permalink
fix(vue3): prevent mixin leakage caused by inspection, fix vuejs#2037
Browse files Browse the repository at this point in the history
  • Loading branch information
lehni committed Mar 30, 2023
1 parent 1b1d1d0 commit 32baa7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app-backend-vue3/src/components/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ function mergeOptions (
if (!to[key]) {
to[key] = from[key]
} else {
Object.assign(to[key], from[key])
to[key] = Object.assign({}, to[key], from[key])
}
}
}
Expand Down

0 comments on commit 32baa7d

Please sign in to comment.