typescript 引入 lodash 正确姿势
Posted mengfangui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 引入 lodash 正确姿势相关的知识,希望对你有一定的参考价值。
1、安装依赖
yarn add lodash --save
yarn add @types/lodash --save-dev
2、引入lodash
import * as _ from ‘lodash‘
3、使用
_.cloneDeep(json)
以上是关于typescript 引入 lodash 正确姿势的主要内容,如果未能解决你的问题,请参考以下文章
如何在 TypeScript 中重新导出单个 lodash 模块
[TypeScript] Using Lodash in TypeScript with Typings and SystemJS