Last active
June 5, 2017 11:40
-
-
Save neves/4f5a9af1a162643f63d3a7c87d7b9c3c to your computer and use it in GitHub Desktop.
Vue.$log
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vue.prototype.$log = console.log.bind(console) | |
new Vue({el: '#app'}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="app"> | |
<input @keydown="$log" @keyup="$log" @keypress="$log" placeholder="type here"> | |
open console to see the logs | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment