[Vuejs]-How to filter the table with Vue/Element-UI

0πŸ‘

βœ…

It looks like a problem in your filter logic. Maybe you want use your data.status == 0 logic clause with && binary operator

Edit: pay attention on using parentheses in your logic. Besides that, you could use === to test equality including the type

Leave a comment