typescript 使用Typescript将属性添加到Vue.js中的数组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 使用Typescript将属性添加到Vue.js中的数组相关的知识,希望对你有一定的参考价值。

get addPropertiesToArray(): any {
    const newArray: any = [];
    const pushToArray = (element: any) => {
      newArray.push({
        propertyA: element,
        propertyB: false,
        propertyC: "abc"
      });
    };
    this.$R.forEachObjIndexed(pushToArray, this.monthDays);
    return newArray;
  }

以上是关于typescript 使用Typescript将属性添加到Vue.js中的数组的主要内容,如果未能解决你的问题,请参考以下文章