欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue动态修改div、table...元素高度宽度

程序员文章站 2022-06-17 14:48:34
...

根据浏览器宽高度,动态显示内容的宽高,总体就是给设置宽高的对象设置一个监听器即可

<template>
  <el-container style="height: 100%;width: 100%;">
    ...
  </el-container>
</template>

<script>
  export default {
    data() {
      return {
             ...
        }
    },
    created() {
      // 创建监听和监听对象即可
      window.addEventListener('resize', this.setTableHeight)
      // this.setTableHeight()
    },
    destroy() {
      window.removeEventListener('resize', this.setTableHeight)
    },
    methods: {
      setTableHeight() {
        this.$nextTick(() => {
          this.statisticsTableHeight = (window.innerHeight - 100 - 36 * 2) / 2
          this.entityFrom.tableHeight = window.innerHeight-360 })
      }
    }
  }
</script>

<style scoped lang="scss">

</style>