vue 页面组件遮罩层无法全屏的一个解决方案

查遍了度娘,看过了无数复制。
1.在给遮罩层div加clientHeight,但是如果内容不撑满屏幕的话仍然无效。而我的内容是动态生成的,并不一定能撑满屏幕。
2.直接上代码,最关键的一步是给id把mask的div的top,left,right,bottom都设为0
<template>
  <div>
    <div id="mask" v-show="isPay">
      <div class="mask_img">div>
    div>
    <button @click="mask()">11111button>
  div>
template>

<style scoped>
#mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}
.mask_img {
  background: yellow;
  width: 316px;
  height: 200px;
  z-index: 999;
  position: fixed;
  right: 0px;
}
style>

<script>
export default {
  data() {
    return {
      isPay: false
    };
  },
  methods: {
    mask() {
      this.isPay = !this.isPay;
    }
  }
};
script>

你可能感兴趣的:(vue 页面组件遮罩层无法全屏的一个解决方案)