@@ -143,6 +143,8 @@ export class ReactiveINodeJS implements INodeJS {
143
143
index : number ,
144
144
concept : IConceptJS | undefined ,
145
145
) : INodeJS {
146
+ // The related Vue-`Ref` does not need to be triggered.
147
+ // It will be updated through the changed listener of the branch.
146
148
const unreactiveNode = this . unreactiveNode . addNewChild (
147
149
role ,
148
150
index ,
@@ -180,6 +182,8 @@ export class ReactiveINodeJS implements INodeJS {
180
182
}
181
183
182
184
setReferenceTargetNode ( role : string , target : INodeJS | undefined ) : void {
185
+ // The related Vue-`Ref` does not need to be triggered.
186
+ // It will be updated through the changed listener of the branch.
183
187
return this . unreactiveNode . setReferenceTargetNode (
184
188
role ,
185
189
unwrapReactiveINodeJS ( target ) ,
@@ -190,6 +194,8 @@ export class ReactiveINodeJS implements INodeJS {
190
194
role : string ,
191
195
target : INodeReferenceJS | undefined ,
192
196
) : void {
197
+ // The related Vue-`Ref` does not need to be triggered.
198
+ // It will be updated through the changed listener of the branch.
193
199
this . unreactiveNode . setReferenceTargetRef ( role , target ) ;
194
200
}
195
201
@@ -209,6 +215,8 @@ export class ReactiveINodeJS implements INodeJS {
209
215
}
210
216
211
217
setPropertyValue ( role : string , value : string | undefined ) : void {
218
+ // The related Vue-`Ref` does not need to be triggered.
219
+ // It will be updated through the changed listener of the branch.
212
220
this . unreactiveNode . setPropertyValue ( role , value ) ;
213
221
}
214
222
0 commit comments