vue学习五

发布时间 2023-10-15 16:42:07作者: 子过杨梅
<div id="app5">
        <button @click="exchange(-5)">点我减五</button>
        <button @click="exchange(5)">点我加五</button>
    </div>

    <script>
        const app5=new Vue({
            el:'#app5',
            data:{},
            methods:{
                exchange(a){
                    app3.num += a
                }
            }
        })
    </script>