赞
踩
我们在使用vue2的时候经常会用到vue中的this
,方便我们拿到ref或store等,但是vue3版本的setup
语法糖却没有this
关键字
我们可以使用getCurrentInstance
方法获得与this
关键字类似的效果
代码示例
<template>
<div ref="adiv"></div>
</template>
<script setup lang="ts">
import { getCurrentInstance } from "vue";
const instance = getCurrentInstance();
//获取上面的div
const adiv = instance.refs.adiv;
</script>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。