摘要: replacePropertyName(arr, oldProp, newProp) { return arr.map(item => { const { [oldProp]: oldValue, ...rest } = item; // 提取旧属性并存储其值 const newItem = { . 阅读全文
posted @ 2024-11-05 09:47 三水儿 阅读(0) 评论(0) 推荐(0) 编辑
摘要: //重置下载文件前缀地址 export const getDownloadPrefix = (url) => { let suffix = window.location.origin + window.location.pathname; //获取前缀 if (process.env.NODE_E 阅读全文
posted @ 2024-11-04 11:24 三水儿 阅读(0) 评论(0) 推荐(0) 编辑
摘要: copy(val) { try { // textarea为带格式复制,input为不带格式复制 const input = document.createElement("textarea"); input.value = val; document.body.appendChild(input) 阅读全文
posted @ 2024-04-24 15:09 三水儿 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 遇到八百遍了!!使用 function(){ } 时 里面不能用this,要给this重新赋值 ,或者换成箭头函数 ps: 求求不要在遇到老项目了 阅读全文
posted @ 2024-04-11 11:24 三水儿 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1.下载安装 npm install vue-seamless-scroll --save 2.引入 import vueSeamlessScroll from "vue-seamless-scroll"; 3.注册使用组件 <vueSeamlessScroll :class-option='def 阅读全文
posted @ 2024-04-11 11:17 三水儿 阅读(547) 评论(0) 推荐(0) 编辑
摘要: 父级元素添加鼠标事件 子元素绑定点击事件 <div @mouseenter="actioveCollection = index" @mouseleave ="actioveCollection = false"> <i class="el-icon-star-off" v-if="!isColle 阅读全文
posted @ 2024-04-11 10:46 三水儿 阅读(8) 评论(0) 推荐(0) 编辑
摘要: node-sass找不到 => 降低版本 => 发现package.json和package-lock.json中的nodesass版本不一致 => 卸载依赖,使用cnpm安装 => 依赖安装不全 => 使用npm安装,报错如下,解决方法如下 => 项目正常启动 npm install --lega 阅读全文
posted @ 2023-11-21 10:59 三水儿 阅读(17) 评论(0) 推荐(0) 编辑
摘要: .interactiveStyle { height: 200px; overflow: auto; } .interactiveStyle::-webkit-scrollbar { /*滚动条整体样式*/ width: 5px; /*高宽分别对应横竖滚动条的尺寸*/ height: 1px; } 阅读全文
posted @ 2023-09-01 14:18 三水儿 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 在组件1中调用组件2中的方法 组件1: this.$eventbus.$emit("change_event", "参数") 组件2: mounted () { this.$eventbus.$on('change_event', (参数) => { // 需要调用的方法 this.init() } 阅读全文
posted @ 2023-02-10 11:02 三水儿 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 问题背景描述 安装three.js时报错 解决方式 参考:https://blog.csdn.net/kk2442687723/article/details/126248887 阅读全文
posted @ 2022-10-24 16:59 三水儿 阅读(91) 评论(0) 推荐(0) 编辑