Hi, im relatively new to the uibuilder node and VueJS. I have following problem:
For example, if i have multiple inputs to a uibuilder node over msg.payload. I catch them with the uibuilder.onChange() function. So good so far. Now i've got one input from a node, lets say testVal (msg.payload.testVal) and an input from another node - testVal2 (msg.payload.testVal2).
uibuilder.onChange('msg') inside index.js
vueApp.testVal = msg.payload.testVal;
vueApp.testVal2 = msg.payload.testVal2;
Now i'll see testVal updating every second due to the back-end but when testVal2 triggers uibuilder.onChange() cause its updated too, testVal will have no value in that moment causing it to display wrong/nothing. Im using the link nodes to connect the dashboard to the individual components on each flow. Is there a way to seperate the values so they don't disturb each other?
