一:添加全局方法:
vue2:
Vue.prototype.aaa = function (name);
使用this.aaa;
vue3:
const app = createApp(App) app.config.globalProperties.$aaa = function (name){ console.log('...'); } app.mount('#app');
使用this.$aaa;
或使用:
import { getCurrentInstance } from 'vue'
// ts proxy 使用
const { proxy }: any = getCurrentInstance()
// js
/* const { proxy } = getCurrentInstance() */
console.log(proxy, proxy.$Test())