I'm developing a small online store (Vue.js) I have several products with different names and prices. Each product has a "Details" button.
I want a modal window with the names and prices of this product to appear when I click on the "Details" button. At the moment, I always only show the data from the first product. I do not know how to display the data of the product that I clicked on. I roughly understand that you need to use "this", but so far no solution comes. I use vue-js <slot></slot>
in Modal.
In methods:
showModal() {
let myModal = new bootstrap.Modal(
document.getElementById('exampleModal'),
{}
);
myModal.show();
},
My button:
<button @click="showModal">Details</button>
Given the syntax, I’m assuming you’re using Bootstrap 5.
You’d be better off creating a component Vue component for the product details modal that you can pass a product to as a prop, and then it’ll change its content based on the product.
If you have a list of products that you’re iterating over, then you can do something like this:
Now when you click the details button, it’ll set the selected product as a
data
item, as well asshowModal
true. The product is then passed to the modal component, which can show the details based on that prop: