JSFiddle - React, Tailwind, and code Playground

by Bo Andersen

HTML

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

<div id="app">
  <input type="text" v-on:keyup.shift.enter="myListener">
  
  <button v-on:click.meta="myButtonListener">Click Here</button>
</div>

JavaScript

new Vue({
	el: '#app',
  methods: {
  	myListener: function() {
    	alert("You pressed the Shift + Enter key!");
    },
    myButtonListener: function() {
    	alert("You clicked the button!");
    }
  }
});