I am working on a project that includes a table from bootstrap-vue
. I am trying to add a link to each row, similar to the code snippet below:
<template #row>
<div @click="goToPage">
{{ item.name}}
</div>
</template>
However, I am unsure of how to access the table tr
element in Bootstrap. You can find my project on codesandbox. Any assistance on this matter would be greatly appreciated.