Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <template>
  2. <div>
  3. <div :class="hpBoxClass">
  4. <img :id="pokemonImageId" v-if="alive" :src="pokemon.images" class="pokemon-bottom"/>
  5. </div>
  6. <div :class="boxClass">
  7. <h2 class="pokemon">{{pokemon.name}}</h2>
  8. <div :class="hpBarClass">
  9. <div :style="hpBarStyle" class="hp-bar-fill"></div>
  10. </div>
  11. <h4 class="level">Lvl. {{pokemon.level}}</h4>
  12. </div>
  13. </div>
  14. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement