You may have an infinite update loop in a component render function
@Decade is right about the problem. Here is the exact problem:
- You are in render method rendering the list of item using some state value
NOTE: render method is triggered whenever any state changes
- Then you are trying to bind the class based on a result of function
test
this function is flawed as it is again trying to mutate the state, thus causing the render - test - render cycle.
You can solve this problem by making your test function not mutate the state instead, like so:
methods: {
test(result) {
let accept;
if (result == 'accept') {
accept = true;
} else if (result == 'Not accept') {
accept = false;
} else {
console.log(result);
}
return {
success: accept,
danger: !accept,
};
},
}
I hope that helped!
First, I'm not sure why you have not_accept
, can't you just use !this.accept
in its place?
I'm not 100% sure why you're getting this warning, but here's what I think.
The watcher for v-bind:class
is watching for changes to item.result
, this.accept
and this.not_accept
. Any change in those values will cause it to be re-rendered by calling test
again. But within test
, you're modifying this.accept
and this.not_accept
, so Vue needs to re-check again if the result has changed because of that, and in doing so it may change this.accept
and this.not_accept
again, and so on.
The class
binding and the data is flawed. class
for each of the items will be set to the same thing, but it looks as though you want a custom style for each item depending on item.result
. You really shouldn't be modifying any properties of this
inside test
.
It's hard to give a thorough answer because I'm not completely sure of how your component works and what it should do.
You can get this error if you call a function instead of pass a function in a vue directive. Here is an example:
I made a custom directive to load data via AJAX when a boostrap tab is displayed.
This is bad:
v-on-show-bs-tab="getFirstPageSites()"
Here, vue appears to call the function (or rather evaluate the expression) and pass the result to the directive.
This is good:
v-on-show-bs-tab="getFirstPageSites"
Here I am passing the function by name such that I can call it in the directive.
I was accidentally doing something similar and not that easy to spot with an untrained eye: calling .sort()
on an array in a filter. sort
mutates the array, thus making the component re-render. Solution is to first slice
the array and create a shallow copy, then sort.
Bad:
filters: {
sortedDays(days) {
return days.sort().join(', ');
},
},
Good:
filters: {
sortedDays(days) {
return days.slice().sort().join(', ');
},
},
I got this same error after making the dumb mistake of using :click
in a component instead of @click