使用Vue-Moment时,在哪里可以添加“ moment.suppressDeprecationWarnings = true”?

时间:2020-03-11 10:19:10

标签: javascript vue.js momentjs

我正在使用通过npm安装的 vue-moment 。我即将推出一个网站,并且我不敢冒险更改日期的格式,因为整个网站都非常需要它,并且也不想破坏任何内容。

我已经看到我可以通过添加以下内容来关闭来自moment.js的警告: moment.suppressDeprecationWarnings = true

但是,当我使用vue-moment时,我没有脚本文件来更改设置。我曾尝试将其添加到app.js以及正在使用力矩的组件中,但是仍然收到警告:“弃用警告:提供的值未采用公认的RFC2822或ISO格式。”

有什么办法可以抑制Vue.js中的警告?

1 个答案:

答案 0 :(得分:1)

必须在使用插件的那一刻尽早完成:

import vueMoment from 'vue-moment';

Vue.use(vueMoment);
Vue.moment.suppressDeprecationWarnings = true;