美文网首页
vue 动态更改标签的属性

vue 动态更改标签的属性

作者: 把我推进深海的你真善良 | 来源:发表于2020-10-23 13:37 被阅读0次

el-table 组件里设置height,在门户页里生成滚动条,在其自己的页面里不生成滚动条。

v-model="propsHeight"
v-bind="propsHeight"
data() {
  return {
    propsHeight: {}  
  }
 },
  created() {
    if (this.pos === 'workbench') {
      this.propsHeight = {
        height: 150 * this.h - 120
      }
    }
  }

相关文章

网友评论

      本文标题:vue 动态更改标签的属性

      本文链接:https://www.haomeiwen.com/subject/axjvmktx.html