Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <template>
- <div id="App">
- <h1>{{ users }}</h1>
- <h1>dsad</h1>
- </div>
- </template>
- <script>
- export default {
- name: 'App',
- data(){
- return {
- users : null
- }
- },
- mounted() {
- fetch('localhost:8080/users/')
- .then(response => response.json())
- .then(json => this.users = json);
- }
- }
- </script>
- <style>
- </style>
Advertisement
Add Comment
Please, Sign In to add comment