[Vuejs]-Quasar: Why is QCheckbox selected all in QTable?

0👍

Just in case someone needs this I have figured out what was missing.

What I needed to changed was this:

row-key="name"

to

row-key="_id"

since literally row-key means the key or id of the row I select.

Hope this would help someone like me!

Leave a comment