摘要: Composition API Composition API 将是 Vue 3 的核心功能,它具有许多更改和性能改进。 我们也可以在 Vue 2 中通过 npm 插件@vue/composition-api 使用它。 安装 yarn add @vue/composition-api 之后,在入口文 阅读全文
posted @ 2024-10-30 15:35 丁少华 阅读(41) 评论(0) 推荐(0) 编辑
摘要: vue3 父元素 <template> <div class="app"> <some-modal v-model:visible="modalVisible" /> </div> </template> <script setup> import { ref } from "vue"; impor 阅读全文
posted @ 2024-10-30 15:21 丁少华 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 简介 一款CPU的诞生 也会分为很多歌步骤,每个周期,每个周期都会存在对应的代号产品。 就像软件一样,测试版>预发版>正式版等。 对于用户来说,哪个版本都能用,就是BUG多少的问题。 ES版 此阶段的CPU,是还没正式推出前的工程测试版用的。 该类CPU充满了不稳定性不确定性, 但是价格特别便宜,性 阅读全文
posted @ 2024-10-29 11:24 丁少华 阅读(9) 评论(0) 推荐(0) 编辑
摘要: ⨯ Detected file "Contents/Resources/src/files/adbtool/mac/adb" that's the same in both x64 and arm64 builds and not covered by the x64ArchFiles rule: 阅读全文
posted @ 2024-10-15 10:06 丁少华 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 近年来,我一直在使用jenkins 来部署自己的项目,发现太耗内存了, 因此将自动化部迁的操作改为使用github action。 初始化action配置 选择一个合适的action类型,比如webpack、gitPage、Nodejs等等。 比如我这里选择了webpack,选择完成后 可以看到在仓 阅读全文
posted @ 2024-10-12 16:32 丁少华 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 前言 一般情况下,我们要链接服务器除了三方的GUI工具 如 xshell、finalshell外。 我们还会使用一些没有UI的终端去链接,比如windows的powerShell、mac的Terminal、ios的serverCat(非自带)和andriod的termius (非自带)等等。 我们买 阅读全文
posted @ 2024-10-12 13:56 丁少华 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 前语 发现在主进程和渲染进程通信的设计中,很多代码都是重复的,导致最后非常臃肿,且不利于后期扩展 electron项目中 核心文件结构如下 | -- index.js | -- index.html | -- ipc | -- handlers | -- other.js | -- xxx.js | 阅读全文
posted @ 2024-09-23 18:17 丁少华 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 比如 https://abc.com/files/xx.zip,或许xx // 文件名转为小驼峰 export const kebabCase_to_camelCase = (fileName) => { // 转换为小写,并用正则表达式替换每个分隔符后的字符为大写(除非它是字符串的第一个字符) c 阅读全文
posted @ 2024-09-23 15:41 丁少华 阅读(40) 评论(0) 推荐(0) 编辑
摘要: vscode的npm栏展示的script不是你想要的?你有强迫症,想自定义吗?接着看 在项目中新增针对性的vscode配置,.vscode>settings.json。 忽略某一个脚本 { "npm.scriptExplorerExclude": [ "format", "build", "prep 阅读全文
posted @ 2024-09-23 11:06 丁少华 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 在esm中没有这些 __dirname、require,因为这是cjs的规范。 但是通过如下代码,你即可使用上 import path from "node:path"; import { createRequire } from "node:module"; import { fileURLToP 阅读全文
posted @ 2024-09-23 10:04 丁少华 阅读(29) 评论(0) 推荐(0) 编辑