vue禁止遮罩层下的页面滚动

问题

功能开发过程中写遮罩时,遇到遮罩下页面还可以滚动的问题。

解决

直接给遮罩下的元素套上一个样式,使其不可滚动。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<template>
	<div :class="isPopup ? 'disableRoll' : ''">
    <div>
      ...
    </div>
  </div>
</template>

<script>
export default {
  data() {
    return {
      isPopup: false,
    }
  }
}
</script>

<style>
  .disableRoll {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
  }
</style>
Licensed under CC BY-NC-SA 4.0
Built with Hugo
Theme Stack designed by Jimmy