Advertisement
linuxyamigos

Untitled

Jan 26th, 2020
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <div id="reviews_app">
  2.   <h3 class="mt-5 mb-3 font-weight-light">Reseñas</h3>
  3.  
  4.   <li v-for="review of reviews">
  5.      <span v-for="i in parseInt(review.rating)" class="fa fa-star checked"></span>          
  6.  
  7.     <blockquote class="blockquote text-justify">
  8.       <p class="mb-0">"{{review.text}}"</p>  
  9.       <footer class="blockquote-footer">{{review.name}}</footer>
  10.     </blockquote>
  11.   </li>  
  12. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement