2024年6月26日
摘要:
const copied = structuredClone(calendarEvent)
阅读全文
posted @ 2024-06-26 17:24
荻!!!!!!!!
阅读(10)
推荐(0)
2024年4月10日
摘要:
如果是个blob地址格式的需要下载用 const link = document.createElement('a'); link.href = file.url;(这里是blob的地址) link.download = 'filename.ofd'; document.body.appendChi
阅读全文
posted @ 2024-04-10 16:00
荻!!!!!!!!
阅读(35)
推荐(0)
2023年11月30日
摘要:
//生成水印文字 createWmWord() { console.log(this.curPosiInfo); let time = dayjs(new Date()).format('YYYY-MM-DD HH:mm:ss');//拍摄时间 let posi = this.curPosiInfo
阅读全文
posted @ 2023-11-30 13:24
荻!!!!!!!!
阅读(21)
推荐(0)
2023年6月27日
摘要:
/** * 处理 移动设备上的 点击、长按、左右上下滑动 事件 * * * 导出了7个自定义指令: * v-tap: tap点击事件 * v-swipe: swipe滑动事件 * v-swipeleft: swipeleft左滑事件 * v-swiperight: swiperight右滑事件 *
阅读全文
posted @ 2023-06-27 13:43
荻!!!!!!!!
阅读(467)
推荐(0)
2023年4月25日
摘要:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <style> html,body{ width: 100%; height: 100%; } #box{ height: 100px; width: 100
阅读全文
posted @ 2023-04-25 10:00
荻!!!!!!!!
阅读(43)
推荐(0)
2023年4月20日
摘要:
在 CSS 中,存在许多数学函数,这些函数能够通过简单的计算操作来生成某些属性值,例如 : calc():用于计算任意长度、百分比或数值型数据,并将其作为 CSS 属性值。 min() 和 max():用于比较一组数值中的最大值或最小值,也可以与任意长度、百分比或数值型数据一同使用。 clamp()
阅读全文
posted @ 2023-04-20 11:02
荻!!!!!!!!
阅读(44)
推荐(0)
2023年4月18日
摘要:
不管是 web 端还是移动端,信息流都是现在很流行的信息展示方式。信息流经常搭配自动加载一起使用以获得更好的使用体验。 最近在使用 Vue 开发过程中也遇到了首页信息流自动加载的需求。大致了解了一下几个滚动自动加载组件,发现多数都是把内容放在在一个单独的滚动容器内;但我遇到的需求是整个页面的滚动(博
阅读全文
posted @ 2023-04-18 16:21
荻!!!!!!!!
阅读(188)
推荐(0)
2023年4月7日
摘要:
相比其他大型框架,Vue更加灵活,开发者既可以选择使用Vue来开发一个全新项目,也可以将Vue引入到一个现有的项目中。代码简洁、上手容易,深受开发者青睐。本节我们将对Vue的开发环境以及常用工具的使用进行讲解。 1.Visual Studio Code编辑器 Visual Studio Code(V
阅读全文
posted @ 2023-04-07 15:04
荻!!!!!!!!
阅读(29)
推荐(0)
2023年2月20日
摘要:
1.将bloburl转换为file格式 let data = { name: "新年致辞.png", status: "success", uid: 1664334311149, url: "blob:http://localhost:9528/d66ad67a-eef7-4b47-ae8b-5c3
阅读全文
posted @ 2023-02-20 14:02
荻!!!!!!!!
阅读(402)
推荐(0)
2023年2月10日
摘要:
case 'area': const defalut = Beforethreedefaultvalue[openType]; this.currentdata = [...fujin]; this.cols = '2'; this.textValue = 'xzqmc'; // 这里是针对级联选择
阅读全文
posted @ 2023-02-10 13:51
荻!!!!!!!!
阅读(41)
推荐(0)