Guest User

Untitled

a guest
Dec 13th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <div class="container" id="app">
  2.  
  3. <div class="wrapper">
  4.  
  5. <h1 class="caption">It's event time! Click on button!</h1>
  6.  
  7. <button class="button" v-on:click="onClick">Press me</button>
  8.  
  9. </div>
  10.  
  11. </div>
  12.  
  13. new Vue({
  14. el: "#app",
  15. method: {
  16. onClick: function () {
  17. alert('Hi, it's me!')
  18. }
  19. }
  20. });
Add Comment
Please, Sign In to add comment