1,637 questions
0
votes
3
answers
689
views
Vue problem with table components and bootrstrap
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 :...
0
votes
1
answer
3k
views
Nuxt performance in the lighthouse
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.
...
0
votes
1
answer
282
views
Cannot change theme color in bootstrap-vue
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: (
"...
1
vote
0
answers
415
views
Bootstrap Vue b-table displaying nested object
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 ...
2
votes
0
answers
732
views
Vue 3 - Bootstrap Rollup Failure
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 ...
0
votes
1
answer
361
views
How to use mouseleave event to close Bootstrap-Vue Tooltip
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=&...
-1
votes
2
answers
397
views
how to attach BootstrapVue to our vue.js project?
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. ...
0
votes
1
answer
196
views
vue method Property does not exist on type 'Readonly<...> & Vue' when accessed in component data
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: "...
2
votes
1
answer
136
views
Calling only children button not parent in a list-group bootstrap vue js
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=&...
0
votes
0
answers
103
views
Can I use non-bootstrap icons in bootstrap-vue components
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 ...
1
vote
0
answers
243
views
Vuejs + bootstrap navbar is not responsive
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 ...
0
votes
1
answer
277
views
Dynamically render a bootstrap element in a template
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>
{{...
0
votes
1
answer
371
views
How to use BootstrapVue's layout and grid system to arrange these checkboxes?
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(...
0
votes
1
answer
331
views
Customizing the height of a bootstrap-vue Sidebar
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 ...
1
vote
1
answer
420
views
Filter BootstrapVue table using comma separated string with OR condition in input field
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: [
{...
1
vote
1
answer
1k
views
How to make bootstrap-vue Toast component interpret HTML tag
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&...
0
votes
1
answer
399
views
Bootstrap check box not updating on Computed Properties
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 ...
2
votes
2
answers
1k
views
How to change the border variant of a selected Bootstrap Vue card when clicked in v-for
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 ...
1
vote
1
answer
840
views
Table elements appear under the table header when scrolling
I'm using Vue and bootstrap to create a table:
<b-table
striped
hover
responsive="true"
:no-border-collapse=&...
1
vote
1
answer
3k
views
Unable to install bootstrap-vue
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 @...
1
vote
0
answers
1k
views
Vuejs pagination save currentPage
I'm using a <b-table> with pagination enabled.
<b-pagination v-model="currentPage"
:total-rows="rows"
:per-page="perPage"
align="center"
...
1
vote
1
answer
597
views
How to hide column of this BootstrapVue table during page load?
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 ...
1
vote
1
answer
1k
views
Override CSS for specific Bootstrapvue Components
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=&...
1
vote
2
answers
5k
views
How to fix this "Unexpected useless attribute on `<template>`" error in BootstrapVue table?
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.
<...
1
vote
3
answers
342
views
How can this BootstrapVue table override the app css?
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="...