Skip to content

Instantly share code, notes, and snippets.

@rohan-krishna
Created July 5, 2016 07:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rohan-krishna/c11cbf1a307f3b6549f032faf35c1f9f to your computer and use it in GitHub Desktop.
Save rohan-krishna/c11cbf1a307f3b6549f032faf35c1f9f to your computer and use it in GitHub Desktop.
Vue.js Event Handling
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vue.js Event Handing</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.24/vue.js"></script>
</head>
<body>
<div id="app">
</div>
<script>
new Vue({
el: '#app'
})
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment