If you're using VueJs and Bootstrap Vue and looking to append the "active" tag to your Nav links, check out the following example:
<div>
<b-nav tabs align="center">
<b-nav-item :active="isActive('/')">
<b-link to="/">Home</b-link>
</b-nav-item>
<b-nav-item :active="isActive('/table')">
<b-link to="/table">Table</b-link>
</b-nav-item>
</b-nav>
</div>
By utilizing a function like 'isActive()' with dynamic binding, you can achieve the desired behavior of adding the "active" tag to specific Nav links within your application.