Guest User

Untitled

a guest
Dec 12th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <!-- php land -->
  2. <?php
  3. foreach([1,2,3,4,5] as $i)
  4. {
  5. if( in_array($i, [1,3]) ) { echo '<div>'; }
  6. echo $i;
  7. if( in_array($i, [2,5]) ) { echo '</div>'; }
  8. }
  9. ?>
  10.  
  11. <!-- vue land -->
  12. <template v-for="group in [[1,2], [3,4,5]]">
  13. <div>
  14. <template v-for="item in group">
  15. {{ item }}
  16. </template>
  17. </div>
  18. </template>
Add Comment
Please, Sign In to add comment