-
Notifications
You must be signed in to change notification settings - Fork 113
Open
Labels
Description
Search Results: curObj
https://github.com/fritx/vue-threejs/search?q=curObj&unscoped_q=curObj
Related Vue Topic: [feature] Ability to disable Vue observation
vuejs/vue#2637
Solution Draft:
vuejs/vue#2637 (comment)
data () {
return {
wrapper: Object.freeze({
actual: [bigData]
})
}
},
methods: {
operation () {
this.wrapper = Object.freeze({
actual: [newBigData]
})
}
}