摘要: 1 本地项目首次关联GitLab 2 git init 3 git add . 4 git commit -m 'first' 5 git remote add origin 仓库地址 6 git remote add origin https://e.coding.net/aopaikeji/ya 阅读全文
posted @ 2024-03-15 18:55 编程小妹 阅读(18) 评论(0) 推荐(0)
摘要: 清空命令:cls 阅读全文
posted @ 2024-03-15 09:56 编程小妹 阅读(4) 评论(0) 推荐(0)
摘要: 2024-3-15记事 1 // 待处理数组 2 let arr = []; 3 // 筛选数组某个字段(某一列) 4 let jieshus = arr.railways.map(item => item.jieshu); 5 // 获取当前时间时间戳 6 let now = Date.now() 阅读全文
posted @ 2024-03-15 09:31 编程小妹 阅读(21) 评论(0) 推荐(0)
摘要: 完整代码 1 <!DOCTYPE html> 2 <html lang="en"> 3 4 <head> 5 <meta charset="UTF-8"> 6 <meta name="viewport" content="width=1000, initial-scale=1.0"> 7 <titl 阅读全文
posted @ 2024-03-04 11:28 编程小妹 阅读(2177) 评论(0) 推荐(1)
摘要: Node.js 里可分为 CommonJS 模块和 ECMAScript 模块(ESM)两种不同的模块系统。 CommonJS 模块是 Node.js 最初支持的模块系统,它使用 require() 函数来导入模块,使用 module.exports 或 exports 对象来导出模块。这种模块系统 阅读全文
posted @ 2024-03-02 17:41 编程小妹 阅读(154) 评论(0) 推荐(0)
摘要: vue3页面: import { getCurrentInstance } from 'vue'; const { proxy } = getCurrentInstance(); proxy... 阅读全文
posted @ 2023-11-09 12:26 编程小妹 阅读(171) 评论(0) 推荐(0)
摘要: 遮挡元素设置 pointer-events: none; 被遮挡元素设置 pointer-events: auto; 阅读全文
posted @ 2023-11-09 12:22 编程小妹 阅读(17) 评论(0) 推荐(0)