JSFiddle - React, Tailwind, and code Playground

by suld2495

HTML

<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<div id="app"></div>
    
<script src="https://unpkg.com/vue"></script>
<script>
    var app = new Vue({
        el: '#app',
        template: '<div><p>안녕하세요</p><button>클릭</button></div>'
    });
</script>
</body>
</html>