在vue3.0中在setup函数中不能使用this,应为this为关键字。如果想要在setup函数中访问组件实例的属性或方法,可以使用Vue3提供的两个新的函数:getCurrentInstance和ctx。getCurrentInstance函数可以获取当前组件实例对象,而ctx则是一个包含了props、attrs、emit等属性和方法的上下文对象。

<script setup>
import { getCurrentInstance } from 'vue';
const { proxy: ctx } = getCurrentInstance();
const selectBlur = e => {
    ctx.$forceUpdate(); // ctx此时就相当于vue2中的this
};

</script>

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐