Created
April 1, 2019 16:39
-
-
Save akmalhazim/5e28243c7bc56375938f920e78174ba3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <!--<div>--> | |
| <vs-card> | |
| <vs-table | |
| title="Default" | |
| v-model="selected" | |
| @selected="handleSelected" | |
| :data="users"> | |
| code-toggler | |
| <template slot="thead"> | |
| <vs-th> | |
| </vs-th> | |
| <vs-th> | |
| Name | |
| </vs-th> | |
| <vs-th> | |
| Website | |
| </vs-th> | |
| <vs-th> | |
| Nro | |
| </vs-th> | |
| </template> | |
| <template slot-scope="{data}"> | |
| <vs-tr :data="tr" :key="indextr" v-for="(tr, indextr) in data" > | |
| <vs-td :data="data[indextr].email"> | |
| {{data[indextr].email}} | |
| </vs-td> | |
| <vs-td :data="data[indextr].username"> | |
| {{data[indextr].username}} | |
| </vs-td> | |
| <vs-td :data="data[indextr].website"> | |
| {{data[indextr].website}} | |
| </vs-td> | |
| <vs-td :data="data[indextr].id"> | |
| {{data[indextr].id}} | |
| </vs-td> | |
| </vs-tr> | |
| </template> | |
| </vs-table> | |
| </vs-card> | |
| <!--</div>--> | |
| </template> | |
| <script> | |
| export default { | |
| data() { | |
| return { | |
| users:[ | |
| { | |
| "id": 1, | |
| "name": "Leanne Graham", | |
| "username": "Bret", | |
| "email": "Sincere@april.biz", | |
| "website": "hildegard.org", | |
| }, | |
| { | |
| "id": 2, | |
| "name": "Ervin Howell", | |
| "username": "Antonette", | |
| "email": "Shanna@melissa.tv", | |
| "website": "anastasia.net", | |
| }, | |
| { | |
| "id": 3, | |
| "name": "Clementine Bauch", | |
| "username": "Samantha", | |
| "email": "Nathan@yesenia.net", | |
| "website": "ramiro.info", | |
| }, | |
| { | |
| "id": 4, | |
| "name": "Patricia Lebsack", | |
| "username": "Karianne", | |
| "email": "Julianne.OConner@kory.org", | |
| "website": "kale.biz", | |
| }, | |
| { | |
| "id": 5, | |
| "name": "Chelsey Dietrich", | |
| "username": "Kamren", | |
| "email": "Lucio_Hettinger@annie.ca", | |
| "website": "demarco.info", | |
| }, | |
| { | |
| "id": 6, | |
| "name": "Mrs. Dennis Schulist", | |
| "username": "Leopoldo_Corkery", | |
| "email": "Karley_Dach@jasper.info", | |
| "website": "ola.org", | |
| }, | |
| { | |
| "id": 7, | |
| "name": "Kurtis Weissnat", | |
| "username": "Elwyn.Skiles", | |
| "email": "Telly.Hoeger@billy.biz", | |
| "website": "elvis.io", | |
| }, | |
| { | |
| "id": 8, | |
| "name": "Nicholas Runolfsdottir V", | |
| "username": "Maxime_Nienow", | |
| "email": "Sherwood@rosamond.me", | |
| "website": "jacynthe.com", | |
| }, | |
| { | |
| "id": 9, | |
| "name": "Glenna Reichert", | |
| "username": "Delphine", | |
| "email": "Chaim_McDermott@dana.io", | |
| "website": "conrad.com", | |
| }, | |
| { | |
| "id": 10, | |
| "name": "Clementina DuBuque", | |
| "username": "Moriah.Stanton", | |
| "email": "Rey.Padberg@karina.biz", | |
| "website": "ambrose.net", | |
| } | |
| ] | |
| } | |
| } | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment