Answers for "comsumsi api axios"

1

comsumsi api axios

new Vue({
  el: '#app',
  data () {
    return {
      info: null
    }
  },
  mounted () {
    axios
      .get('https://api.coindesk.com/v1/bpi/currentprice.json')
      .then(response => (this.info = response))
  }
})
Posted by: Guest on November-04-2020

Browse Popular Code Answers by Language