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.
Vue.js에서 옵저버가 이미 붙은 객체에 새로운 속성을 임의로 추가하면, 새로 추가된 속성에는 옵저버가 추가되지 않습니다. 이 때문에 Vue.set 또는 this$set을 사용해 속성을 추가해야 합니다.
Vue.set
this$set
Activity
ChangJoo-Park commentedon Feb 13, 2017
Vue.js에서 옵저버가 이미 붙은 객체에 새로운 속성을 임의로 추가하면, 새로 추가된 속성에는 옵저버가 추가되지 않습니다. 이 때문에
Vue.set
또는this$set
을 사용해 속성을 추가해야 합니다.