Check out the button below that links to a specific route:
<router-link class="q-pa-md" :to="{ name: 'Edit'}" id="item.id">
<q-btn outline>Edit</q-btn>
</router-link>
Take a look at my router setup below:
{ path: 'cms/index/edit/:id', name: 'Edit', component: () => import('components/cms/Edit.vue'), props: true },