gpt4 book ai didi

vue.js - 如何让vue 3静音?

转载 作者:行者123 更新时间:2023-12-02 19:12:45 27 4
gpt4 key购买 nike

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

Vue 3 中的等价物是什么:

Vue.config.silent = true

Documentation for Vue2 silent config

最佳答案

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

配置具有自定义错误/警告处理程序,您可以使用它们返回 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>

关于vue.js - 如何让vue 3静音?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64041063/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com