去评论
dz插件网

vue3 去掉控制台中的警告信息

左右不逢缘
2022/05/30 21:52:09
const app = Vue.createApp({});

// 屏蔽错误信息
app.config.errorHandler = () => null;
// 屏蔽警告信息
app.config.warnHandler = () => null;

app.mount("#app");