Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <main class="sound-table">
  2. <div class="header"><p>Bogstav</p></div>
  3. <div class="header"><p>Udtale</p></div>
  4. <div class="header"><p>Eksempler</p></div>
  5. <div class="header"><p>Forklaringer</p></div>
  6.  
  7. <section class="letter">
  8. <p>{{ currentLetter.Letter }}</p>
  9. </section>
  10.  
  11. <section v-for="p in currentLetter.Pronunciations"
  12. v-bind:key="p.Explanation">
  13. <div class="pronounciation"><p>[ {{ p.Pronounciation }} ]</p></div>
  14. <div class="examples"><p v-for="example in p.Examples">{{ example }}</p></div>
  15. <div class="explanation"><p>{{ p.Explanation }}</p></div>
  16. </section>
  17. </main>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement