Vue练习二十一:03_03_累加按钮自加1

Demo 在线地址:
https://sx00xs.github.io/test/21/index.html
---------------------------------------------------------------
ide: vscode
文件格式:.vue
解析:(待补)

<template>
  <div id="app">
    <input type="button" v-model="val" @click="handleClick">
  </div>
</template>
<script>
export default {
  data:function(){
    return{
      val:0
    }
  },
  methods:{
    handleClick(){
      ++this.val;
      alert(this.val);
    }
  }
}
</script>
原文地址:https://www.cnblogs.com/sx00xs/p/11266081.html