All Questions
6 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="...
0
votes
2
answers
4k
views
How to integrate bootstrap 5 in nuxtjs?
First, I tried integrating bootstrap-vue, but that supports bootstrap 4, and worse vue2.
So I'm trying to integrate bootstrap 5 without any changes by following these steps:
I install the bootstrap ...
0
votes
1
answer
996
views
Bootstrap 5 Dropdown menu broken when using Modal with Nuxt
Using Nuxt (vueJs) and Bootstrap 5, I have a dropdown menu in a NavBar :
<nav class="navbar navbar-expand-lg navbar-dark bg-primary pb-xl-5 pt-xl-5">
<div class="container-...
0
votes
0
answers
126
views
How Connect a separate (JS component Bootstrap 5) in NuxtJS
I have Bootstrap5 installed, I only want to include a few components from Bootstrap5 sources, how do I do that?
package.json
{
"name": "Blog",
"version": "1....
2
votes
1
answer
1k
views
How to properly load Bootstrap5's Masonry into Nuxt?
I am trying to use the Masonry plugin with Bootstrap5 and NuxtJS. When I follow the example here
https://getbootstrap.com/docs/5.0/examples/masonry/ and incorporate it into my own codesandbox, I ...
5
votes
2
answers
9k
views
How to import boostrap v5 (js + css) into nuxt.js v2.14 with vue v3 project?
As of today, bootstrap-vue does not support vue v3 and bootstrap v5.
I would like to just import bootstrap files into nuxt v2.14 project. Could anyone give me a specific example how to accomplish this?...