joken-前端工程师

  :: 首页 :: 博问 :: 闪存 :: 新随笔 :: :: :: 管理 ::

2024年9月4日

摘要: 代码实现示例 子组件 实现双向绑定 <template> <div class="component-name"> <input type="text" :value="modelValue" @input="handleChange" /> </div> </template> <script s 阅读全文
posted @ 2024-09-04 22:25 joken1310 阅读(26) 评论(0) 推荐(0) 编辑

摘要: 在 Vue 3 中,使用 PropType 可以定义复杂类型的 props。这对于确保组件 props 接收到的值符合预期的结构非常有用。下面是一些定义复杂类型的常见方法。 1. 定义对象类型 你可以使用 TypeScript 的接口或类型别名来定义复杂对象类型。 import { defineCo 阅读全文
posted @ 2024-09-04 21:35 joken1310 阅读(365) 评论(0) 推荐(0) 编辑

摘要: husky 安装使用 说明 husky 作用是创建git钩子,然后触发命令执行 安装 yarn add husky 初始化 npx husky init 会出现下面文件夹 commitlint 安装和使用 安装 commitlint yarn add commitlint 安装校验规则库 @comm 阅读全文
posted @ 2024-09-04 21:31 joken1310 阅读(22) 评论(0) 推荐(0) 编辑