You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...
bind(el,binding,vnode){
...
if(!modifiers.native&&vnode.componentInstance){
...
}else{
...
// store handle on element with a unique key for identifying// multiple v-stream directives on the same node;(el._rxHandles||(el._rxHandles={}))[getKey(binding)]=handle}},
...
should be
...
bind(el,binding,vnode){
...
if(!modifiers.native&&vnode.componentInstance){
...
}else{
...
}// store handle on element with a unique key for identifying// multiple v-stream directives on the same node;(el._rxHandles||(el._rxHandles={}))[getKey(binding)]=handle},
...
then data in stream directive is correctly updated on replace rows
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
v-stream data is not being updated in componentInstance
When i update array
rows
then mydata
in v-stream is not updated.This work
This not working
I think this is problem in directive
v-stream
:should be
then
data
in stream directive is correctly updated on replacerows
The text was updated successfully, but these errors were encountered: