美文网首页vue3
vue3 在原型上挂载方法

vue3 在原型上挂载方法

作者: 微笑的弧度_c50f | 来源:发表于2021-12-06 16:15 被阅读0次

    在vue3 中没有 this 不在是实例化查出来的vue对象,那怎么往原型挂在公用的方法呢?

    const app = createApp(App);
    
    const test = () => {
      console.log('我是测试函数触发的');
      return '测试成功!';
    };
    
    
    app.config.globalProperties.$Test = test;
    
    app.use(store).use(router).mount('#app')
    
    

    下面是使用的方式

    import { getCurrentInstance } from 'vue';
    
    setup(){
    // getCurrentInstance() 获取当前组件实例
    
    const { ctx }  = getCurrentInstance();  //  方式一,这种方式只能在开发环境下使用,生产环境下的ctx将访问不到
    
    const { proxy } = getCurrentInstance(); //  方式二,此方法在开发环境以及生产环境下都能放到组件上下文对象(推荐)
    }
    
    proxy.$Test(); 就可以调用这个方法;
    
    
    
    

    相关文章

      网友评论

        本文标题:vue3 在原型上挂载方法

        本文链接:https://www.haomeiwen.com/subject/frxnxrtx.html