在标签中加上ref='xxx',然后在代码中this.$refs.xxx这样就拿到了页面元素
例如:<div class='box' ref='myBox'>你好</div>
this.$refs.myBox.style.color = 'red
你好
在标签中加上ref='xxx',然后在代码中this.$refs.xxx这样就拿到了页面元素
例如:<div class='box' ref='myBox'>你好</div>
this.$refs.myBox.style.color = 'red
你好