I'm new in vuejs and I had the following problem when rendering an object with the v-for method the content does not respect the max-width of css or the boostrap col ... any ideas?
<div class="pre-scrollable" style="height:120px;" >
<div class="container">
<div class="row">
<div class="col-md-4" v-for="item in respuestas" >
<p>Lorem ipsum dolor sit amet, consectetur adip</p>
<p v-bind:class="[test]">{{item}} </p>
</div>
</div>
</div>
</div>