Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.3k views
in Technique[技术] by (71.8m points)

vue中怎么用闭包实现方法重载?

如题,当我有个两个按钮调用同一个页面同一个函数时,怎么实现一个传一个参数,另一个按钮调用传三个参数。


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
<template>
    <button @click="demo('参数一')">按钮一</button>
    <button @click="demo('参数一', '参数二', '参数三')">按钮二</button>
</template>
export default {
    methods: {
        demo (a, b, c) {
            console.log(a, b, c)
        }
    }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...