Bug Type: Style Environment Vue Version: 3.4.21 Element Plus Version: 2.7.1 Browser / OS: Chrome 123.0.6312.107 / MacOS 13.4 Build Tool: Vite Reproduction Related Component el-button Reproduction Link Element Plus Playground Steps to rep...
下列代码中,单击“-”按钮会执行数字减1的操作,将代码补充完整。<div id="box"> <button ___="count--">-</button>{{count}}</div><script type="text/javascript"> var vm = new Vue({ el : '#box', data : { count : 10 } });<...