2024年1月11日

暂停win10和win11系统自动更新

摘要: regedit 打开注册表 计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings 新建 DWORD(32位)值 FlightSettingsMaxPauseDays (改为十进制值) 值的单位为天 4.最后打开设置 W 阅读全文
posted @ 2024-01-11 10:00 文仲玉 阅读(1) 评论(0) 推荐(0) 编辑
2024年1月8日

查看本机连接过的wifi和密码

摘要: 打开powershell管理员 netsh wlan show profile 命令查看所有连接过的wifi netsh wlan show profile name=Internet-402 key=clear 阅读全文
posted @ 2024-01-08 17:14 文仲玉 阅读(8) 评论(0) 推荐(0) 编辑
2023年12月15日

vite 打包正式环境报错 require is not defined

摘要: 本质原因是因为浏览器不识别commonJS的语法,需要通过插件做转换 解决方法: 方法1:项目代码中使用了require语法,使用这个插件便可以转换 npm i vite-plugin-require-transform -D // vite.config.js import requireTran 阅读全文
posted @ 2023-12-15 14:39 文仲玉 阅读(342) 评论(0) 推荐(0) 编辑
2023年11月5日

windows11右键桌面菜单修改成windows10风格命令

摘要: 第一步,打开管理员 powershell 运行命令 reg add "HKCU\Software\Classes\CLSID{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve 第二部,打开任务管理器 重启资源服务器 阅读全文
posted @ 2023-11-05 18:11 文仲玉 阅读(28) 评论(0) 推荐(0) 编辑
2023年2月10日

body上添加ontouchstart属性的作用

摘要: 移动端兼容处理,为了防止css中的伪类,比如说:active不生效,来配置的一个属性。如果你是PC端的开发的话,其实是可以去掉的 阅读全文
posted @ 2023-02-10 10:04 文仲玉 阅读(15) 评论(0) 推荐(0) 编辑
2022年12月7日

解决grid item被撑开导致没有按比例均分

摘要: https://blog.csdn.net/mouday/article/details/126952048 阅读全文
posted @ 2022-12-07 11:50 文仲玉 阅读(33) 评论(0) 推荐(0) 编辑
2022年12月5日

单行代码技巧

摘要: //交换两个变量 || 解构 let a = 0 let b = 1 [a,b] = [b,a] console.log(a,b) //1,0 //检查元素当前是否处于焦点(document.activeElement) const elementIsInFocus = el => (el docu 阅读全文
posted @ 2022-12-05 16:45 文仲玉 阅读(12) 评论(0) 推荐(0) 编辑

quasar.js

摘要: https://www.cnblogs.com/yangtaotao0824/p/15953105.html 阅读全文
posted @ 2022-12-05 11:46 文仲玉 阅读(6) 评论(0) 推荐(0) 编辑
2022年10月12日

vue项目实现常见的三种文件类型在线预览

摘要: https://blog.csdn.net/weixin_52103939/article/details/122447620 阅读全文
posted @ 2022-10-12 09:59 文仲玉 阅读(84) 评论(0) 推荐(0) 编辑
2022年8月31日

扩展行

摘要: :expandedRowKeys="expandedRowKeys" :expandIcon="props=>null" :expandIconAsCell="false" 阅读全文
posted @ 2022-08-31 15:19 文仲玉 阅读(12) 评论(0) 推荐(0) 编辑