logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue3 和vue2 使用ref操作dom、以及数组循环中的ref操作dom

vue3 在v-for中操作dom最佳实践<template><div class="rain"><divv-for="(item, index) in 8":key="index":ref="el => rain[index] = el":data-set=" 'data' + index"/><div ref='single'></d

vue3 全局注册app.config.globalProperties, 如何处理getCurrentInstance 上下文线上环境报错

vue3挂载全局属性和方法,使用app.config.globalProperties, 但是在组件中获取全局上下文的时候getCurrentInstance会在线上环境报错。搜索了一遍,看了好多文章,都是在本地环境getCurrentInstance有用,线上环境报错,所以一切的一切还是去官网查找,得到最后的完美结果。线上环境正确使用:const instance = getCurrentIns

到底了