ricksantiago

html

Feb 21st, 2019
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.92 KB | None | 0 0
  1. <section class="containerHorario">
  2.     <!-- Swiper -->
  3.     <div class="swiper-container">
  4.         <div  id="app" class="swiper-wrapper">
  5.             %{--<div>--}%
  6.             <div v-for="agenda in agendas" class="swiper-slide card grey darken-1">
  7.                 <div class="card-content white-text">
  8.                     <span class="card-title">{{ agenda.numeroSala }}</span>
  9.                     <p>
  10.                         <button  :disabled="agenda.horarioSala.lenght === 0"
  11.                                 class="btn white black-text
  12.                                 btnHorario waves-effect waves-light btn-large"
  13.                                v-for="tempo in agenda.horarioSala">{{ tempo }}</button>
  14.                     </p>
  15.                 </div>
  16.             </div>
  17.             %{--</div>--}%
  18.         </div>
  19.         <!-- Add Pagination -->
  20.     <br>
  21.         <div class="swiper-pagination"></div>
  22.     </div>
  23. </section>
Add Comment
Please, Sign In to add comment