JSFiddle - React, Tailwind, and code Playground

by Federico

HTML

<script src="https://unpkg.com/vue/dist/vue.js"></script>

<div id="app"></div>

JavaScript

var vm = new Vue({
	el: '#app',
  data: {
    message: 'Hello World!',
    x: 1,
    y: 2
  },
  methods: {
		showMessage: function() {
			alert(this.message);
    }
  },
  computed: {
  	z: function() {
    	return this.x + this.y;
    }
  }
});

console.log(vm);