Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <template>
  2. <div id="users">
  3. <v-server-table url="users" :columns="columns">
  4. </v-server-table>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. name: 'UsersContainer',
  10. components: {},
  11. data() {
  12. return {
  13. columns: ["fullName", "age", "city"]
  14. }
  15. },
  16. }
  17. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement