JSFiddle - React, Tailwind, and code Playground

by nkovacs

HTML

<script src="https://rawgit.com/yyx990803/vue/master/dist/vue.js"></script>
Ez egy <span v-text="foo">teszt?</span>

JavaScript

setTimeout(function() {
    new Vue({
        el: 'body',
        data: {
            foo: "teszt!"
        },
        methods: {
        }
    })
}, 5000);