移动端vue页面禁止移动/滚动

当需要在移动端中禁止页面滚动,加入:@touchmove.prevent即可,
例子如下
<template>
  <div @touchmove.prevent>
    <h3 class="main-bk">{{ title }}</h3>
    <p>您好!{{provider}}:</p>
  </div>
</template>


 
好记性不如烂笔头,每天记录一点点
原文地址:https://www.cnblogs.com/wayneliu007/p/10681260.html