在top-notice.vue里将this.client.debug = null 这行代码,移到this.client.connect()方法前即可
如下
connect: function () {
const headers = {
login: MQTT_USERNAME,
passcode: MQTT_PASSWORD,
};
this.client.debug = null;
this.client.connect(headers, this.onConnected, this.onFailed);
},