I want to create selectable table but selection is not working. Even this example from documentation is not working. https://bootstrap-vue.org/docs/components/table#row-select-support
It just does not select any row and hook on row selection is not invoking.
Maybe someone knows how to fix it?
Here is app config
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import BootstrapVue from "bootstrap-vue-3";
import App from './App.vue'
import router from './router'
import "bootstrap/dist/css/bootstrap.css";
import "bootstrap-vue/dist/bootstrap-vue.css";
const app = createApp(App);
app.use(createPinia());
app.use(router);
app.use(BootstrapVue);
app.mount('#app');```