通过$refs更改元素的样式

<!-html->
   <div @touchstart="gotouchstart()" @touchmove="gotouchstart()" @touchend="gotouchstart()"  ref="masklayer">向右滑动查看更多</div>
methods:{
	gotouchstart(){
   	    this.$refs.masklayer.style='display:none'
     }
}

你可能感兴趣的:(css,vue)