JSFiddle - React, Tailwind, and code Playground

HTML

<div id="app">
  <p>
    {{ json.name }}
  </p>
</div>

JavaScript

new Vue({
  el: '#app',
  data: () => ({
    json: {},
  }),
  created: function() {
    fetch('https://aad.wtf/form/app2.json').then((response) => {
      return response.json().then((json) => {
        console.log("JSON", json)
        this.json = json
      })
    })
  }
})