当前位置: 首页 > 知识库问答 >
问题:

在vue3中怎么拿到某个元素的所有样式?

秦宏硕
2023-09-12

有没有简单的方法,拿到某个元素所有的样式信息。

共有2个答案

孔山
2023-09-12

html
<div ref="myDom"></div>

vue
console.log(this.$refs.myDom.style)

汤修贤
2023-09-12

你需要的可能是 Window.getComputedStyle(), vue3 中并没有这样的方法
文档:https://developer.mozilla.org/zh-CN/docs/Web/API/Window/getCo...

 类似资料: