1,637 questions
20
votes
4
answers
23k
views
how to hide bootstrap-vue table header row
bootstrap-vue will by default create a header row for my data.
Is there any way to hide the header row for a <b-table> so only data items will be rendered?
1
vote
2
answers
8k
views
Can't select item in b-dropdown vuejs
Hy I'm creating a simple dropdown using bootstrap-vue in vuejs. The Code in my component is like this :
<b-col sm="2">
<b-dropdown :text="selectedItem" v-model="selectedItem">
&...
0
votes
1
answer
2k
views
can we mix global import of all components in bootstrap-vue with import of selected component?
I want to significantly reduce tag noise and reduce long tag names to short names in bootstrap-vue. This is what I did in vue-cli generated project in main.js:
import 'bootstrap/dist/css/bootstrap....
1
vote
1
answer
435
views
Bootstrap-Vue usage when utilising render() and JSX
I've trauled the docs for Bootstrap Vue, as well as asked this question on their github issue tracker a few days ago, with no luck.
I can't find anything in relation to using Vue's render() or JSX to ...
7
votes
1
answer
9k
views
Bootstrap-Vue <b-card /> With Link In Title
I have a component that contains a <b-card> component like this:
<b-card :title="post.title">
<p class="card-text">{{ post.body }}</p>
</b-card>
How do I make the card ...
0
votes
1
answer
516
views
Enlarge image bootstrap-vuejs
When I save an image after choosing it, I'm not able to see the image when I open the page again.
I have no idea what is wrong with the code.
Perhaps something in the CSS should change. I dont know.
...
0
votes
0
answers
164
views
how to change the bootstrap sortable table head pseudo elements position
I'm working with a bootstrap-vue component: sortable table. you can find the example here.
My question is, how to move the arrows (they are actually pseudo elements of the th) from the end of the th ...
4
votes
2
answers
3k
views
Bootstrap-Vue CSS compilation in Laravel Mix
I'm using Laravel 5.6, Laravel Mix 2.0, and Bootstrap-Vue 2.0.0-rc.1.
Trying to find a way to configure Laravel Mix to include Bootstrap-Vue's CSS into my app.css file and prevent Bootstrap-Vue from ...
1
vote
1
answer
8k
views
Vuejs: How to use `v-b-modal directive` in BootstrapVue?
Here's my code (ERROR):
<template lang="pug">
.component-root
b-btn(v-b-modal.myModal)
i.fa.fa-calendar
b-modal#myModal
span Hello this is my modal!
</template&...
87
votes
1
answer
112k
views
Preview an image before it is uploaded VUEjs [duplicate]
I know this question has been asked. But I have no idea how to use the code in vuejs. I tried a lot but without any results.
I also added my code.
Can some one please help me? This is my code.
Thanks
...
7
votes
2
answers
20k
views
How to get a Vue b-table to scroll the body with a fixed header
I've got a b-table element on a page that currently displays a bunch of data from a database. At the moment it is paginated, but feedback has indicated that they would rather have all the information ...
0
votes
1
answer
211
views
watcher ignores changes in the store
I have a component for displaying paginated elements in a table.
I've rewritten pagination to be based on Vuex (previously it was using Event Bus) and it almost works - the values are saved to the ...
0
votes
1
answer
825
views
BootstrapVue in boilerplate Vuejs project
I'm trying to set up a boilerplate Vuejs project using their CLI. Using vue create <project-name> I selected vuex, babel and typescript. I want to import Bootstrap-Vue as well.
After running ...
1
vote
1
answer
1k
views
Vue-Bootstrap Component with exact width
I have an issue with bootstrap-vue navitem. I cannot set the witdh of the components, therefore when I change the language of my website the navbar items jump around.
This is what it looks like:
...
0
votes
0
answers
174
views
Vue.js is not reflecting in laravel project
I have been trying to use vue.js in my laravel 5.4 cms admin-panel project... i'm trying to create a checkbox with vue.js such that anytime a user tries to reset there password they could either ...
-4
votes
1
answer
100
views
Disable form input in the next page [closed]
I'm busy with creating a single page application. I have an input form for different proposes.
When user 1 fills the form, I want him to save it and let user 2 fill his part of the form on the page ...
1
vote
0
answers
418
views
Cannot load the stats for bootstrap-vue – please try again later
I'm trying to use the npm to install the bootstrap-vue in my project. However, I get an error saying "[server error] Cannot load the stats for bootstrap-vue – please try again later".
I've tried to ...
0
votes
1
answer
2k
views
Vue.js form file input Error in event handler
I am trying to upload a file in my form using the bootstrap-vue form file component
template
<b-form-group id="userInputGroup8" label="User Picture:">
<b-form-file id="...
3
votes
1
answer
10k
views
Vue.js bootstrap-vue: How to add correctly a cancel button in my form
I am trying to add a cancel button, the same way as the reset button is defined, but it does not fire the method and the validation is still performed ( required felds )
I added @cancel="onCancel" ...