1. <div id = "app">
    2. <button v-on:click="clickMe">按钮</button>
    3. <!--简写-->
    4. <button @click="clickMe>按钮</buttion>
    5. </div>
    var vue  = Vue({
        el:"#app",
      methods:{
        clickMe:function(evelt){
            alert('你点击了我')
        }
      }
    })