Vue多页面开发使用moment插件遇到的问题 爱吃萝卜的小白兔 2020-09-27 223 阅读1分钟 直接引入moment在{{}}胡子语法中使用会报错,如下图 解决方法:使用过滤器 filters: { // 处理时间 handleDate(value) { if (!value) return '' return moment(value).format('YYYY.MM.DD') }},