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>{{message}}</p><button>{{obj.button}}</button></div>',
        data: {
            message : '안녕하세요',
            obj : {
                button: '클릭'
            }
        }
    });
</script>
</body>
</html>