JSFiddle - React, Tailwind, and code Playground

by skirtle

HTML

<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<div id="app">
  {{ API_FIELDS }}
</div>

JavaScript

new Vue({
  created() {
    this.API_FIELDS = 'Fields here'
  }
}).$mount('#app')