All Questions
7 questions
0
votes
1
answer
232
views
anchor tag inside a button that controls the collapse of another div not working
On my Nuxt 2 SSR + Bootstrap 5 app I have the following code:
<button
v-for="file of orderProduct.files"
class="collapsed son-collapse"
type="...
1
vote
1
answer
340
views
Bootstrap 5's Modal Does Not Fade with Vue 2
I have a pop-up modal that is being called by another componenent, however, when clicked, it does not show the dialog, only the overlay is visible. Basically, It's not changing from "modal fade&...
0
votes
1
answer
447
views
Vue.js 2.6.11. How to hide all li elements except one on click during loop?
For a general understanding of the essence of the issue, I will attach screenshots from the layout.
static layout
layout when question was clicked
Have questions. They will be output through the loop. ...
1
vote
0
answers
493
views
"Module parse failed: Unexpected token." Trying to import Bootstrap 5 in VueJS 2
I encountered a strange error trying to add bootstrap 5.1.3 to VueJS 2.5.2
error in ./node_modules/bootstrap/dist/js/bootstrap.esm.js
Module parse failed: Unexpected token (1243:15)
You may need an ...
0
votes
1
answer
191
views
Vue.js 2.6.12 with Bootstrap 5.1.0 - Issue with manual component initiation
Following up on my old thread Vue.js (2.x) with Bootstrap 5
I keep having issues when creating a bootstrap component wrapper in Vue.
The idea is to create a wrapper for each Bootstrap component that I ...
0
votes
1
answer
2k
views
How to use the Bootstrap 5 accordion component with VueJS2?
I am trying to use VueJS with Bootstrap 5's accordion component. I added the v-for directive on one of the accordion items, and it "sorta" works....but the styling is off a bit. For example, ...
1
vote
1
answer
3k
views
Vue.js (2.x) with Bootstrap 5
I'm trying to use Bootstrap 5 with Vue (2.x) without any third-party library. The idea is to create a wrapper for each Bootstrap component that I want to use (not all of them).
I use the following SO ...