JSFiddle - React, Tailwind, and code Playground

by mbudnik

HTML

<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>

<div id="app">
  <button v-on:click="increase(2, $event)">Click me!</button>
  <button v-on:click="counter++">Click me!</button>
  <p>
    {{ counter * 2 > 10 ? 'Greater than 10' : 'Smaller than 10' }}
  </p>
  <p v-on:mousemove="updateCoordinates">Coordinates: {{ x }} / {{ y }} - <span v-on:mousemove.stop="">DEAD SPOT</span>
  </p>
  <input type="text" v-on:keyup.enter.space="alertMe">
</div>

JavaScript

new Vue({
  el: '#app',
  data: {
    counter: 0,
    x: 0,
    y: 0
  },
  methods: {
    // access to event object
    increase: function(step, event) {
      this.counter += step;
    },
    updateCoordinates: function(event) {
      this.x = event.clientX;
      this.y = event.clientY;
    },
    dummy: function(event) {
      event.stopPropagation();
    },
    alertMe: function() {
      alert('Alert!');
    }
  }
})