vue 中选择器的使用

1、通过 $refs 属性查找

// html
<div class="my-class" ref="myElement">Hello World</div>
// 
this.$refs.myElement

2、通过 document.querySelector() 方法查找

document.querySelector('.my-class')

3. 通过 this.$el.querySelector() 方法查找

//元素 +class
this.$el.querySelector('section .docx');
// id 选择器
this.$el.querySelector('#docx')

Supongo que te gusta

Origin blog.csdn.net/qq_37570710/article/details/129844350
Recomendado
Clasificación