Skip to main content
Filter by
Sorted by
Tagged with
0 votes
3 answers
689 views

I have a problem with component and bootstrap-vue, even though everything is installed, when I use default example from documentation: <template> <div> <b-table striped hover :...
Nebojša B.'s user avatar
0 votes
1 answer
3k views

Despite my code is very simple I do not know why my Nuxt performance is too low in the lighthouse. My Nuxt web app is deployed with the name hadicodes.com and you can check it out yourselves online. ...
Hadi Majidi's user avatar
0 votes
1 answer
282 views

I want to change Bootstrap-vue theme colors , primary , success , danger ... I have read document but still can't do that this is theme.scss $body-bg: red; $body-color: #111; $theme-colors: ( "...
morteza mortezaie's user avatar
1 vote
0 answers
415 views

I'm trying to list the drivers in b-table. This gives me the correct name of the driver: console.log(this.orders[0].order_drivers[0].populated_driver.user.username) But when I want to display it on ...
user15899845's user avatar
2 votes
0 answers
732 views

I'm new Vue, I don't understand this error from installing bootstrap-vue-3 Install commands: npm i --save bootstrap bootstrap-vue-3 Configuration [main.js]: import { createApp } from 'vue' import App ...
Stove Games Games's user avatar
0 votes
1 answer
361 views

I have a custom color Vue 2 picker component created using a combination of bootstrap-vue button and tooltip components like so: <template> <div> <b-button ref=&...
wonder95's user avatar
  • 4,355
-1 votes
2 answers
397 views

I am using the Vue.js. I want to attach the Bootstrap-vue to my project but it is not working properly. When I attach BootstrapVue the black screen is shown and nothing functionalities will perform. ...
user avatar
0 votes
1 answer
196 views

It's failing to see varietyFormatter, which I'm passing as a method reference for a bootstrap vue table to use. data() { return { tableFields: [ { key: "...
Drew Royster's user avatar
2 votes
1 answer
136 views

My question is how can I click on children button (b-form-spinbutton) without trigger on the list group item? <b-list-group class="slots-list pr-2" > <b-list-group-item v-for=&...
Joha's user avatar
  • 95
0 votes
0 answers
103 views

I know bootstrap has a ton of icons, but they are missing stuff that I need, so I was thinking about using an external icon base eg. fontawesome. So with bootstrap I can apply its icons to components ...
HubertNNN's user avatar
  • 2,241
1 vote
0 answers
243 views

I am new to Vuejs and currently building a new website by Nuxtjs, built the navbar successfully but when opening it from a mobile it is not responsive at all. i want to have something like this but ...
Hazal Kaya's user avatar
0 votes
1 answer
277 views

I want to dynamically render a bootstrap icon in my template based on the result of a function. I tried something like this <template> <div> {{...
Christopher Mellor's user avatar
0 votes
1 answer
371 views

I have a BootstrapVue table like this; Here's the code for the table; window.onload = () => { new Vue({ el: '#app', computed: { visibleFields() { return this.fields.filter(...
user3848207's user avatar
  • 5,307
0 votes
1 answer
331 views

I have a single page application developed in Vue.js using the bootstrap-vue library. Because my application is an editor which I want to display properly regardless of screen resolution, I allow ...
Radu M.'s user avatar
  • 1,401
1 vote
1 answer
420 views

I have a BootstrapVue table that looks like this; The code(credit goes to this answer) for the table is here; new Vue({ el: '#app', data() { return { filter: '', items: [ {...
user3848207's user avatar
  • 5,307
1 vote
1 answer
1k views

I would like my toast to interpret HTML tags inside the message props and without having to call the toast from the template , For example : this.$bvToast.toast('Lorem ipsum <b>dolor</b&...
Anis Kaloun's user avatar
0 votes
1 answer
399 views

I'm trying to create a checkbox that selects all checkboxes. I have an array of objects. Inside each object is a allowed value. Which states if a checkbox is active. The array is coming from a ...
ronoc4's user avatar
  • 637
2 votes
2 answers
1k views

I have my b-card and v-for showing and functioning mostly as desired, the one issue I'm running into is changing the border-variant of a card that is selected. So far I have tried nesting the v-for ...
AdamBrashear's user avatar
1 vote
1 answer
840 views

I'm using Vue and bootstrap to create a table: <b-table striped hover responsive="true" :no-border-collapse=&...
Eric's user avatar
  • 1,271
1 vote
1 answer
3k views

When trying to add Boostrap-Vue to my project with Vuex, Vue-Router, TypeScript and babel I get error in the browser. To reproduce docker run -it --rm -p 8080:8080 node:17.7.2-alpine yarn global add @...
Max K's user avatar
  • 71
1 vote
0 answers
1k views

I'm using a <b-table> with pagination enabled. <b-pagination v-model="currentPage" :total-rows="rows" :per-page="perPage" align="center" ...
xeraphim's user avatar
  • 4,703
1 vote
1 answer
597 views

This question is a follow-up question to the answer provided here; How to show only show/hide 2nd and 3rd column of this bootstrapvue table? The code below will show/hide some columns in a ...
user3848207's user avatar
  • 5,307
1 vote
1 answer
1k views

first Question here so please educate me if i'm doing this wrong. So im working on an SPA that uses BootsrapVue and i created a view that uses a <b-form-checkbox-group v-model=&...
Max Stöber's user avatar
1 vote
2 answers
5k views

This question is a follow-up to the StackOverflow answer provided here How to have superscript in column header of this BootstrapVue table? Here's the original code of the BootstrapVue table. <...
user3848207's user avatar
  • 5,307
1 vote
3 answers
342 views

I have a simple BootstrapVue table. The css is defined in App.vue. Here's the code for App.vue. <template> <div id="app"> <!-- <img alt="Vue logo" src="...
user3848207's user avatar
  • 5,307

1 2 3
4
5
33