Guest User

Untitled

a guest
Jul 19th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. [
  2. {
  3. id: 0,
  4. name: 'Global'
  5. },
  6. {
  7. id: 1,
  8. name: 'Africa',
  9. sub_regions: [
  10. {
  11. id: 2,
  12. name: "East Africa",
  13. countries: [
  14. {
  15. id: 3,
  16. name: "Burundi"
  17. },
  18. {
  19. id: 4,
  20. name: "Comoros"
  21. }
  22. ]
  23. }
  24. ]
  25. },
  26. {
  27. id: 5,
  28. name: "Asia",
  29. }
  30. ]
  31.  
  32. <select>
  33. <option>Global</option>
  34. <option>Africa</option>
  35. <option>Burundi</option>
  36. ..
  37. </select>
  38.  
  39. <select>
  40. <option value="region.id" v-for="region in regions">region.name</option>
  41. </select>
Add Comment
Please, Sign In to add comment