收到一只叮咚
建议使用ref,给button添加注册ref引用,然后在表单提交的时候,获取button按钮,使其disable置灰。ref 被用来给元素或子组件注册引用信息。引用信息将会注册在父组件的 $refs对象上。如果在普通的 DOM 元素上使用,引用指向的就是 DOM 元素;如果用在子组件上,引用就指向组件。123<div id="app"> <button ref="mybutton" type="primary" @click="save">保存</button></div> 12345678910111213141516171819<script>new Vue({ el: "#app", data: { }, methods: { save() { this.$refs.mybutton.disabled = true; } }})</script><style>:disabled{ border: 1px solid #DDD; background-color: #F5F5F5; color:#ACA899; } </style>