在vue开发中,有时候我们需要使用计算属性函数,但是又没有具体的调用方式,这时可以将该函数强行绑定到class中。
例如有如下函数在computed计算属性中:

options: function () {
  let companyListData = this.$store.getters.getCompanyData || [];
  console.log("companyListData:", companyListData);
  let list = [];
  for (let i = 0; i < companyListData.length; i++) {
    let op = {};
    op.label = companyListData[i].name;
    op.value = companyListData[i].corporateId;
    list.push(op);
  }
  console.log("list:", list);
  this.compList = list;
  return list;
},

我们知道computed计算属性能对属性内的成员变量进行监听,当它们的值改变时该属性里面的函数就会执行一次。但有时候我们没有具体调用options函数的方式,则可直接将该函数强行绑定到class上,一样具有随时监听的功能,如:

<div :class="options"></div>
Logo

前往低代码交流专区

更多推荐