Vue 计数器
Jihongchang(讨论 | 贡献)2023年6月8日 (四) 05:31的版本
https://www.bilibili.com/video/BV12J411m7MG/?p=10
<div class="input-num">
  <button @click>-</button>
  <span>{{}}</span>
  <button @click>+</button>
</div>
var app = new Vue({
  el:"#app",
  data:{},
  methods:{}
})