this.tableData = this.compar(this.tableData, 'name');
 compar(array, key) {
      return array.sort(function (a, b) {
        const x = a[key];
        const y = b[key];
        return x.localeCompare(y);
      });
    },

 

Logo

前往低代码交流专区

更多推荐