vue3中如何用vue2中的this

Posted 晚星@

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue3中如何用vue2中的this相关的知识,希望对你有一定的参考价值。

两种方案分别如下:

proxy = 》 this


<script  lang="ts">
import  getCurrentInstance, ComponentInternalInstance  from "vue";
export default function useCurrentInstance() 
  const  appContext  = getCurrentInstance() as ComponentInternalInstance;
  const proxy = appContext.config.globalProperties;
  return 
    proxy,
  ;

</script>
// @ts-ignore
<script  lang="ts">
import  getCurrentInstance, ComponentInternalInstance  from "vue";
export default function useCurrentInstance() 
  const  proxy  = getCurrentInstance() as ComponentInternalInstance;
  return 
    proxy,
  ;

</script>

以上是关于vue3中如何用vue2中的this的主要内容,如果未能解决你的问题,请参考以下文章

MenuStrip控件中如何用代码的方式添加二级菜单,想在编辑菜单下添加子项,怎么添加?

vue2.0 代码功能片段

vue3中的fragment(片段)组件

android中如何用代码生成View控件

Vue3官网-高级指南(十七)响应式计算`computed`和侦听`watchEffect`(onTrackonTriggeronInvalidate副作用的刷新时机`watch` pre)(代码片段

vue2升级vue3: TSX Vue 3 Composition API Refs