All Questions
3 questions
-1
votes
1
answer
117
views
Can I use Bootstrap 5 with Vue v2 and Bootstrap-vue Components?
The project that I work on is created with Nuxt v2 (Vue v2, Bootstrap v4, Bootstrap-vue). The project uses bootstrap-vue components like:
<b-navbar toggleable="md" type="dark" ...
2
votes
2
answers
5k
views
Sort a <b-table> in Bootstrap-Vue by a column and disallow user sort
I know that we can make the columns of <b-table> sortable by using :sort-by="sortBy". But how can I tell it to just sort the table by a particular column in the beginning and that too ...
0
votes
1
answer
99
views
How to make the text area occupy entire browser width in Bootsrap-vue while using components
I am trying to use the first example of input groups using components from Bootstrap-Vue website
My Code is as below :
<div>
<b-input-group prepend="Search" class="mt-3">
...