Function useEmptyObject

  • 根据数据类型返回清空后的数据对象

    Type Parameters

    • T

    Parameters

    • data: T
    • Optional defaultValue: DeepPartial<T>

      需要设置的默认值

    Returns T

    Example

      const data = {
    key: '8899797',
    nested: {
    ll: '123',
    deep: {
    nestedKey: 'nestedValue'
    }
    }
    };
    const emptyValue = useEmptyObject(data)
    // const emptyValue = {
    // key: '',
    // nested: {
    // ll: '',
    // deep: {
    // nestedKey: ''
    // }
    // }
    // };