I have a situation where I am using two v-btn-toggles with multiple buttons in each. When selecting a button in the first toggle, it should impact which buttons are available in the second toggle based on a specific pattern:
firstButtons: [ "a", "b", "c" ],
secondButtons: { a: [0,1,2], b: [3,4], c: [5] }
The v-btn-toggles must be used in this scenario. When clicking on "C", the button "5" is selected in the second group. However, if we then click on "A", instead of "0" being selected as expected, it ends up being "2". Furthermore, clicking randomly on the first group results in inconsistent selections in the second group.
I am trying to create a data pattern like this, but am encountering issues. Any suggestions on how to achieve this?
Here is a codepen example demonstrating this behavior.