[Vuejs]-Array Reactivity Issues

0👍

I’ve figured out the issue… All the properties of objects should be initialized.

So in my case, the proper way to add a row is: this.grid.rows.push({cell: ''});

It would be nice though to initialize object properties when binding to controls, if not initialized yet.

👤Unirgy

Leave a comment