1. 安装lodash

npm i  lodash --save

2. 全局使用 main.ts

.......
import _ from 'lodash'

const app = createApp(App)
app.config.globalProperties.lodash = _;  // 设置全局变了

3. 界面使用

......
import { getCurrentInstance } from "vue"
const { proxy } = getCurrentInstance()
// 生成随机数
console.log(proxy.lodash.random(0,10))

4. 按需引入使用

// 按需引入,并设置别名
import { round as _round } from 'lodash'
......
console.log(_round(9.1234, 2) // 四舍五入,保留两位小数。

5. lodash中文文档路径

https://www.lodashjs.com/


张旭超
1.4k 声望222 粉丝

精通 html+div+css jquery, vue, angularjs, angular2, angular4, ionic, ionic2