Advertisement
Guest User

Untitled

a guest
Apr 10th, 2019
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.45 KB | None | 0 0
  1. <template>
  2. <!--<div>-->
  3. <vs-card>
  4. <vs-table
  5. title="Default"
  6. v-model="selected"
  7. @selected="handleSelected"
  8. :data="users">
  9. code-toggler
  10. <template slot="thead">
  11. <vs-th>
  12. Email
  13. </vs-th>
  14. <vs-th>
  15. Name
  16. </vs-th>
  17. <vs-th>
  18. Website
  19. </vs-th>
  20. <vs-th>
  21. Nro
  22. </vs-th>
  23. </template>
  24.  
  25. <template slot-scope="{data}">
  26. <vs-tr :data="tr" :key="indextr" v-for="(tr, indextr) in data" >
  27. <vs-td :data="data[indextr].email">
  28. {{data[indextr].email}}
  29. </vs-td>
  30.  
  31. <vs-td :data="data[indextr].username">
  32. {{data[indextr].username}}
  33. </vs-td>
  34.  
  35. <vs-td :data="data[indextr].website">
  36. {{data[indextr].website}}
  37. </vs-td>
  38.  
  39. <vs-td :data="data[indextr].id">
  40. {{data[indextr].id}}
  41. </vs-td>
  42. </vs-tr>
  43. </template>
  44. </vs-table>
  45. </vs-card>
  46. <!--</div>-->
  47. </template>
  48.  
  49. <script>
  50. export default {
  51. data() {
  52. return {
  53. users:[
  54. {
  55. "id": 1,
  56. "name": "Leanne Graham",
  57. "username": "Bret",
  58. "email": "Sincere@april.biz",
  59. "website": "hildegard.org",
  60. },
  61. {
  62. "id": 2,
  63. "name": "Ervin Howell",
  64. "username": "Antonette",
  65. "email": "Shanna@melissa.tv",
  66. "website": "anastasia.net",
  67. },
  68. {
  69. "id": 3,
  70. "name": "Clementine Bauch",
  71. "username": "Samantha",
  72. "email": "Nathan@yesenia.net",
  73. "website": "ramiro.info",
  74. },
  75. {
  76. "id": 4,
  77. "name": "Patricia Lebsack",
  78. "username": "Karianne",
  79. "email": "Julianne.OConner@kory.org",
  80. "website": "kale.biz",
  81. },
  82. {
  83. "id": 5,
  84. "name": "Chelsey Dietrich",
  85. "username": "Kamren",
  86. "email": "Lucio_Hettinger@annie.ca",
  87. "website": "demarco.info",
  88. },
  89. {
  90. "id": 6,
  91. "name": "Mrs. Dennis Schulist",
  92. "username": "Leopoldo_Corkery",
  93. "email": "Karley_Dach@jasper.info",
  94. "website": "ola.org",
  95. },
  96. {
  97. "id": 7,
  98. "name": "Kurtis Weissnat",
  99. "username": "Elwyn.Skiles",
  100. "email": "Telly.Hoeger@billy.biz",
  101. "website": "elvis.io",
  102. },
  103. {
  104. "id": 8,
  105. "name": "Nicholas Runolfsdottir V",
  106. "username": "Maxime_Nienow",
  107. "email": "Sherwood@rosamond.me",
  108. "website": "jacynthe.com",
  109. },
  110. {
  111. "id": 9,
  112. "name": "Glenna Reichert",
  113. "username": "Delphine",
  114. "email": "Chaim_McDermott@dana.io",
  115. "website": "conrad.com",
  116. },
  117. {
  118. "id": 10,
  119. "name": "Clementina DuBuque",
  120. "username": "Moriah.Stanton",
  121. "email": "Rey.Padberg@karina.biz",
  122. "website": "ambrose.net",
  123. }
  124. ]
  125. }
  126. }
  127. }
  128. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement