We have implemented the Quasar framework in our Vue.js application. In one of our modal dialogues, we have multiple groups of toggle buttons (q-btn-toggle) for each master service provider. The screenshot of the setup can be viewed here: https://i.sstatic.net/MYOl9.png
The goal is to allow clients to select both percentage-based and fixed amount tips for services provided by different masters. However, the current code only allows selecting a single button that applies to all masters. This limitation prevents the ability to set different tip amounts for each individual master.
Here's an excerpt from the existing code:
<template>
<q-dialog v-model="show" no-backdrop-dismiss full-width>
<q-card>
//...omitted for brevity
I am seeking guidance on how to modify the code to achieve this functionality. Any suggestions would be greatly appreciated!