一、建立中转站

建立 util.js 中转站文件(任意位置,我是在/assets/js/util.js)

import Vue from 'vue'
export default new Vue

二、分别在两个页面引入该文件(注意路径)

import Utils from '../../assets/js/util.js';

三、调用方代码

methods: {
    functionA() {
        Utils.$emit('demo','msg');
    }
}

四、被调用方代码

mounted(){
    var that = this;
    Utils.$on('demo', function (msg) {
        console.log(msg);
        that.functionB();
    })
},
methods: {
    functionB() {
        ...
    }
}

参考链接1:https://blog.csdn.net/dingleishuo3435/article/details/101500149?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param
参考链接2:https://blog.csdn.net/TrZoey/article/details/82378067

Logo

前往低代码交流专区

更多推荐