我之前就做过类似的事儿,把dialog的显示/隐藏,放到vux中控制;(但好像没有props和$emit效率高……)贴下vuex代码,用show控制显示/隐藏const dialog = { namespaced: true, state: () => ({ show: false, }), mutations: { changeShow(state, flag) { state.show = flag } } } export default dialog在需要使用的组件中获取,我是放在computed中的获取的,如下://... computed: { show() { return this.$store.dialog.show; }, }, //...然后绑定到dialog<el-dialog :title="hello" :visible.sync="show"> </el-dialog> <!-- el-dialog end -->需要更改时调用const v = true this.$store.commit('dialog/changeShow', v)
我之前就做过类似的事儿,把dialog的显示/隐藏,放到vux中控制;(但好像没有
props
和$emit
效率高……)贴下vuex代码,用
show
控制显示/隐藏在需要使用的组件中获取,我是放在
computed
中的获取的,如下:然后绑定到dialog
需要更改时调用