JSFiddle - React, Tailwind, and code Playground

by ElhamZ

HTML

<!Doctype html>
<html>

  <head>
    <meta charset="utf-8">
  </head>

  <body>
    <div id="app">{{message}}</div>
    <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js">


    </script>
    <script>
      new Vue({
        el: "#app",
        data: {
          message: "Hello World!"
        }
      })

    </script>
  </body>

</html>