https://reactjs.org/docs/error-decoder.html
    Uncaught Error: Minified React error #130; visit http://reactjs.org/docs/error-decoder.html?invariant=130&args[]=object&args[]= for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
    image.png
    就是有一个元素验证失败。元素类型应该是一个函数或者string,实际上是 undefined

    1. import { formatDate, debounce } from '$utils';

    可能就是 debounce,或 formatDate 不存在,导致 import的变量是 undefined,引起的报错

    https://blog.csdn.net/enternal07/article/details/114901576