Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div id="app">
    <table class="table">
        <thead>
            <tr>
                <th>nome</th>
                <th>Title</th>
                <th>Nome</th>
            </tr>   
        </thead>    
        <tbody>
            <tr v-for="item in bancodedados">
                <td>{{ item }}</td>
                <td>{{ item }}</td>
                <td></td>
            </tr>
        </tbody>
    </table>
  </div>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.4.4/vue.js"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.16.2/axios.js"></script>
</body>
</html>
 
var app = new Vue({
    el:'#app',
    data:{
        bancodedados:[]
    },
    methods:{
      api(){
        axios.get('https://swapi.co/api/planets/1/?format=json')
        .then(response => {
          console.log(response.data)
          this.bancodedados = response.data
        })
        .catch(error => {
          console.log(error)
        })
      }
    },
    created(){
        this.api()
    }
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers