会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Better-HTQ
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
···
18
下一页
2023年10月28日
《人月神话》读书摘录
摘要: 《人月神话》(The Mythical Man-Month)是计算机科学家弗雷德里克·布鲁克斯(Frederick P. Brooks Jr.)于1975年出版的一本经典著作,主要探讨软件工程和项目管理中的各种问题。书中的内容虽然已有数十年历史,但其中的许多观点和原则依然适用于现代软件开发。以下是对
阅读全文
posted @ 2023-10-28 11:10 Better-HTQ
阅读(151)
评论(0)
推荐(0)
2023年10月27日
VS code配置
摘要: 修改目录折叠方式(紧凑形式 => 非紧凑形式) ↓ 去掉勾选
阅读全文
posted @ 2023-10-27 14:06 Better-HTQ
阅读(14)
评论(0)
推荐(0)
2023年10月7日
Git .gitattributes 配置
摘要: .gitattributes 文件是一个用来配置 Git 版本控制系统的文件,它的作用主要包括以下几个方面: 定义文件属性:.gitattributes 文件可以用来指定特定文件或文件类型的属性,例如文本文件、二进制文件、合并策略等。这可以帮助 Git 更好地处理不同类型的文件。 控制行尾格式:你可
阅读全文
posted @ 2023-10-07 10:35 Better-HTQ
阅读(2264)
评论(0)
推荐(0)
2023年9月15日
Vue2 Modal组件函数式调用封装(基于Ant Design Vue 组件)
摘要: 一、h函数(createElement函数)版本 import Vue from "vue"; import { Modal } from "ant-design-vue"; // 获取扩展 Modal 组件 function getModalConstructor(modalProps, chil
阅读全文
posted @ 2023-09-15 14:33 Better-HTQ
阅读(956)
评论(0)
推荐(0)
2023年9月6日
JSDoc语法规范
摘要: JSDoc 是 JavaScript 中用于添加文档注释的一种常见方式。它是一种在注释中使用特定标记和语法来描述代码功能和用法的标准化方式。以下是 JSDoc 的主要语法规范和常见标记: 1. 基本注释语法: ```javascript /** * 这里是注释的内容。 */ ``` 2. 描述块:描
阅读全文
posted @ 2023-09-06 10:36 Better-HTQ
阅读(807)
评论(0)
推荐(0)
2023年8月21日
Vue3 toRef响应式失效问题排查
摘要: ### 父组件 ```html const stuRecordInfo = ref({ stuNum: 11111 }) // 接口请求返回 stuRecordInfo.value.stuNum = 22222 ``` ### 子组件 ```html const info = toRef(props
阅读全文
posted @ 2023-08-21 16:00 Better-HTQ
阅读(330)
评论(0)
推荐(0)
2023年7月28日
Vue3 自用规范
摘要: Vue依赖导入顺序 1. 类型 2. hooks(vue、vue-router、pinia、element/vant/antd、自定义) 3. 第三方库或插件(SDK) 4. 组件 5. 其他辅助文件(constants、utils、api) Vue页面编写顺序 1. import导入 2. 变量命
阅读全文
posted @ 2023-07-28 09:03 Better-HTQ
阅读(34)
评论(0)
推荐(0)
2023年4月21日
Vite + Vue3 +TS 项目搭建
摘要: [TOC] 安装 nvm 略 安装 node 略 使用 Vite创建项目 vite3.x 文档:https://cn.vitejs.dev/guide/#scaffolding-your-first-vite-project vue3 文档:https://vuejs.org/guide/quick
阅读全文
posted @ 2023-04-21 18:48 Better-HTQ
阅读(584)
评论(0)
推荐(0)
2023年4月20日
CSS filter实现灰色模式和色弱模式
摘要: 在 body 标签上加,以下的 style: filter: invert(80%); // 色弱模式 filter: grayscale(1); // 灰色模式
阅读全文
posted @ 2023-04-20 15:31 Better-HTQ
阅读(280)
评论(0)
推荐(0)
2023年4月19日
Vue css mixins、变量自动导入配置
摘要: Vue2 // vue.config.js const path = require("path"); function addStyleResource(rule) { rule .use("style-resource") .loader("style-resources-loader") .o
阅读全文
posted @ 2023-04-19 14:07 Better-HTQ
阅读(152)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
···
18
下一页
公告