I am a beginner.
I am trying to dynamically add id in my href tag but it is not working.
Here is my code.
<div class="col-md-6" v-for="Product in data">
<div class="panel panel-default" >
<div class="panel-heading">
{{ Product.name }}
</div>
<div class="panel-body" v-for = "Category in Product.Categories">
<div class="panel-group" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<!--SEE HREF BELOW -->
<a data-toggle="collapse" data-parent="#accordion" href="#{{Category._id}}" >
{{ Category.name }}</a>
</h4>
</div>
<!-- SEE ID BELOW AS WELL -->
<div id="{{ Category._id }}" class="panel-collapse collapse">
<div class="panel-body"></div>
</div>
</div>
</div>
</div>
</div>
I am trying to give _id to href in <a data-toggle="collapse" data-parent="#accordion" href="#{{Category._id}}">
and in href I am giving Id of <div id="{{ Category._id }}" class="panel-collapse collapse">
tag on above href.
How can I do this?
Thanks