Bootstrap

vue中el-tabel-column使用formatter(字典表转换)

  created() {
   
    this.getDicts("sys_normal_disable").then((response) => {
      this.Liststatus = response.data;
    });
  },
 typeFormat(row, column) {
      return this.selectDictLabel(this.Liststatus, row.status); 
    },

;