https://i.sstatic.net/JahMG.pngI am working on implementing a dropdown menu that includes a router link to another component and a dialog component for a dialog box. Here is the code snippet for reference:
<td align="center">
<v-btn round class="mx-2 dropdown-menu" fab small v-bind:style="displayClass(key[2])" v-bind:key="key[1]"
v-for="(key) in props.item[6]">
<div>
<!--option 1-->
<router-link :to="{ name : 'modifyinfo', params:{prip : key[0], Name : props.item[1], pripId : key[1]}}"> {{displaycase(key[0])}}
</router-link>
<!--option 2-->
<dialog :prip_name=props.item[1] :prip_info=key[0]>{{displaycase(key[0])}}</dialog>
</div>
</v-btn>
</td>
I am looking for assistance in integrating the router link and dialog options into the dropdown menu within the div. Any guidance would be appreciated.