vue 将一个变量作为methods名
其中buttonMethods 里的参数为该按钮实际调用的method<el-button v-for="button in buttonArr" @click="buttonMethods(button.function)">{{button.label}}</el-button>其中 this.$o
·
其中buttonMethods 里的参数为该按钮实际调用的method
<el-button v-for="button in buttonArr" @click="buttonMethods(button.function)">{{button.label}}</el-button>
其中 this.$options.methods是查询该组件下的所有method
buttonMethods (funcName) {
let methods = this.$options.methods
methods[funcName]()
}
更多推荐
已为社区贡献5条内容
所有评论(0)