lodash 按需加载注意事项
// 使用前,需要手动引入指定的模块
const isElement = require('lodash/isElement');
const debounce = require('lodash/debounce');
// 使用后,放心引入
import { isElement, debounce } from 'lodash'

Last updated
// 使用前,需要手动引入指定的模块
const isElement = require('lodash/isElement');
const debounce = require('lodash/debounce');
// 使用后,放心引入
import { isElement, debounce } from 'lodash'

Last updated