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 + "" + add()}}</p></div>',
        data: {
            message: '10 곱하기 10은 ',
            num: 10
        },
        methods: {
            add() {
                return this.num * this.num
            }
        }
    });
</script>
</body>
</html>