vue3 在原型上挂载方法

在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(); 就可以调用这个方法;


你可能感兴趣的:(vue.js,javascript,前端)