Guest User

Untitled

a guest
Nov 8th, 2020
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <template>
  2.   <div id="App">
  3.     <h1>{{ users }}</h1>
  4.     <h1>dsad</h1>
  5.   </div>
  6. </template>
  7.  
  8. <script>
  9.   export default {
  10.     name: 'App',
  11.     data(){
  12.       return {
  13.         users : null
  14.       }
  15.     },
  16.     mounted() {
  17.      fetch('localhost:8080/users/')
  18.      .then(response => response.json())
  19.      .then(json => this.users = json);
  20.    }
  21.  }
  22. </script>
  23.  
  24. <style>
  25.  
  26. </style>
  27.  
Advertisement
Add Comment
Please, Sign In to add comment