如何让vue 3静音?

How to make vue 3 silent?

我希望禁用所有 Vue 3 日志和警告。

Vue 3 中的等价物是什么:

Vue.config.silent = true

Documentation for Vue2 silent config

您可以在 vue.config.js 配置文件中添加 devServer 字段,其中的对象包含以下条目:

{
    clientLogLevel: 'silent',
}

详情见this documentation page and this one

它似乎已在 Vue3 中被删除,但我在文档中找不到任何对它的引用。

该配置具有自定义 error/warning 处理程序,您可以将其用于 return null

const app = Vue.createApp({});

app.config.errorHandler = () => null;
app.config.warnHandler = () => null;

app.mount("#app");
<script src="https://unpkg.com/vue@next"></script>
<div id="app">{{ anError.value }}</div>