vue3如何去掉控制台的warn信息

/src/main.js中,用下面的代码清除了控制台的【vue warn】:

const app = createApp(App) 
app.config.warnHandler = () => null  // 清除控制台的vue warn
相关推荐