JSFiddle - React, Tailwind, and code Playground

by hunterliu

HTML

<div id="app">
  <div v-bind:id="dynamicId">dynamicId</div>

  <button v-bind:disabled="isButtonDisabled">Button</button>
</div>

CSS

#colorRed {
  color: red;
}

JavaScript

var vm = new Vue({
  el: '#app',
  data: {
    dynamicId: 'colorRed',
    isButtonDisabled: true
  }
})