The "super" keyword does not work in Vue-Cli 3.0 under ie9/ie10.

/ / parent
class BaseChart {

constructor(data){
    this.chartData = data.chartData || []; //
    this.title = data.title || ""; //
    this.xTitle = data.xTitle || ""; //x
    this.yTitle = data.yTitle || ""; //y
    this.xUnit = data.xUnit || ""; //x
    this.yUnit = data.yUnit || ""; //y
    this.vUnit = data.vUnit || ""; //value
    this.chartType = data.chartType || 0;
    this.dataType = data.dataType || 0; //
} 

}

/ / subclass
class PieChart extends BaseChart {

constructor(data){
    super(data);
    this.legenddata = [];
    this.vdata = [];
}

}

how to break the attribute output undifined, of the parent class?

Aug.12,2021
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3a90e-4d8c1.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3a90e-4d8c1.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?