I have three q-tab on top of the homepage. let's say car, bus, bike. if I click on the car tab it shows the car data, if clicked on the bus tab, it shows the bus data, if clicked on the bike tab it shows the bike data without refreshing the page.
<q-tabs v-model="tab" dense align="justify" narrow-indicator>
<q-tab name="car_list" label="Car list" icon="fas fa-car"></q-tab>
<q-tab name="bus_list" label="Bus list" icon="fas fa-bus"></q-tab>
<q-tab name="bike_list" label="Bike list" icon="fas fa-motorcycle"></q-tab>
</q-tabs>
Every time I visit the home page it always shows the car data by default. The problem is let's say I clicked the bike tab, and from there I clicked on one entry which opens another page containing information regarding the clicked bike, there is a back button on the page(here I can put the link, and it is linked to the homepage). When I click on the back button it goes back to the home page, and the car tab data is loaded. but as I was on the bike tab, I want the back button to take me to the bike tab instead of the car tab.
Here my question is there any way to create a link to the tab, so that when I can put that in the back button and it can go back to the tab I want.
(I am not sure if I have made it clear, if not please let me know if you have any suggestion or query)