JSFiddle - React, Tailwind, and code Playground

HTML

<!-- Put this in the HTML section in JSFiddle! -->
<script src="https://unpkg.com/vue/dist/vue.js"></script>

<div id="app">
	<p>{{ sayHello() }} - <a v-bind:href="link">Google</a></p>
</div>

JavaScript

new Vue({
    el: '#app',
    data: {
		title: 'Hello World!',
		link: 'http://google.com'
    },
    methods: {
        sayHello: function () {
            return this.title;
        }
    }
})