git地址
vue-async-computed
安装依赖
npm install --save vue-async-computed
引用
import AsyncComputed from 'vue-async-computed'
Vue.use(AsyncCompute...
yekong
3年前 (2022-04-29)
喜欢
使用前需要先配置cos跨域,不然无法上传文件。
腾讯云cos配置跨域
/**
* @Author: 858834013@qq.com
* @Name: FileUpload
* @Date: 2022-03-04
* @Desc:
*/
<template>
&l...
yekong
3年前 (2022-04-28)
喜欢
安装依赖
cnpm i -S vue-uuid
全局使用
import UUID from "vue-uuid";
Vue.use(UUID);
使用
this.$uuid.v1()
局部使用
import { uuid } from 'vue-uuid...
yekong
3年前 (2022-04-28)
喜欢
vue2项目开发时,需要生成一些唯一的标识,于是找了一个组件。
安装依赖
npm i vue-uuid
生成uuid
import { uuid } from 'vue-uuid';
console.log(uuid.v1())
结果
66d6d470-c50b-11ec-8...
yekong
3年前 (2022-04-28)
喜欢
使用vue开发实现XixunPlayer的功能.
XixunPlayer 下载文件到内部存储(图片、视频等任意文件)
/**
* @Author: 858834013@qq.com
* @Name: downloadFile
* @Date: 2022-04-26
* @Desc...
yekong
3年前 (2022-04-27)
喜欢
使用vue开发实现XixunPlayer的功能.
XixunPlayer 下载文件到SD卡(图片、视频等任意文件)
/**
* @Author: 858834013@qq.com
* @Name: DownFile
* @Date: 2022-04-27
* @Desc: 下载文...
yekong
3年前 (2022-04-27)
喜欢
_.sum(array)
计算 array 中值的总和
参数
array (Array): 要迭代的数组。
返回
(number): 返回总和。
_.sum([4, 2, 8, 6]);
// => 20
uniapp 使用lodash
...
yekong
3年前 (2022-04-27)
喜欢
_.min(array)
计算 array 中的最小值。 如果 array 是 空的或者假值将会返回 undefined。
参数
array (Array): 要迭代的数组。
返回
(*): 返回最小的值。
_.min([4, 2, 8, 6]);
// => 2
_....
yekong
3年前 (2022-04-27)
喜欢
_.mean(array)
计算 array 的平均值。
参数
array (Array): 要迭代的数组。
返回
(number): 返回平均值。
_.mean([4, 2, 8, 6]);
// => 5
uniapp 使用lodash
...
yekong
3年前 (2022-04-27)
喜欢
_.max(array)
参数
array (Array): 要迭代的数组。
返回
(*): 返回最大的值。
_.max([4, 2, 8, 6]);
// => 8
_.max([]);
// => undefined
uniapp 使用lodash
...
yekong
3年前 (2022-04-27)
喜欢