在vue3,获取this对象有两种方式
第一种方式,使用setup参数
setup(props,context){
console.log(context);
}
setup的第二个参数context是执行上下文的参数,打印contex如下所示
可以获取子传父属性的对象信息内容emit方法
第二种方式,getCurrentInstance
getCurrentInstance方法,获取当前组件的实例、上下文来操作router和vuex等
使用:由vue提供,按需引入:import { getCurrentInstance} from 'vue'
const instance=getCurrentInstance()
let {proxy}=instance
此方法在开发环境以及生产环境下都能放到组件上下文对象(推荐使用)文章来源:https://www.toymoban.com/news/detail-587424.html
const {ctx}=getCurrentInstance()
这种方式只能再开发环境下使用,生产环境下的ctx将访问不到文章来源地址https://www.toymoban.com/news/detail-587424.html
到了这里,关于vue3获取this对象的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!