其他分享
首页 > 其他分享> > Vue练习二十一:03_03_累加按钮自加1

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>

 

标签:03,Vue,methods,val,待补,vscode,文件格式,自加
来源: https://www.cnblogs.com/sx00xs/p/11266081.html