• Pan's avatar
    init · d1037008
    Pan authored
    d1037008
errLog.js 179 Bytes
const errLog = {
  state: {
    errLog: []
  },
  pushLog(log) {
    this.state.errLog.unshift(log)
  },
  clearLog() {
    this.state.errLog = [];
  }
};

export default errLog;