我这里是使用了relativeTime插件,写的地方不对导致的。记录一下。
导入相关文件
import dayjs from 'dayjs'
import RelativeTime from 'dayjs/plugin/relativeTime'
import 'dayjs/locale/zh-cn'
错误写法
onShow() {
dayjs.locale('zh-cn');
dayjs.extend(RelativeTime);
}
正确写法
在export外层写
<script>
import dayjs from 'dayjs'
import RelativeTime from 'dayjs/plugin/relativeTime'
import 'dayjs/locale/zh-cn'
// 写在这里就OK了
dayjs.locale('zh-cn');
dayjs.extend(RelativeTime);
export default {
...
}
</script>