JSFiddle - React, Tailwind, and code Playground

by Dedi Wibisono

HTML

<div id="app">
  {{ info }}
</div>

JavaScript

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