
V3
文章平均质量分 91
RipperZero
这个作者很懒,什么都没留下…
展开
-
Redux(ToolKit Version)学习笔记 (勉強ノート)
Redux官网ActionAn object describing what happened, and dispatch it to the store.ReducerA function that takes a current state value and an action object describing “what happened”, and returns a new state value.A reducer’s function signature is: (state,原创 2020-12-16 17:14:28 · 412 阅读 · 0 评论 -
Todo
How to style a checkbox using CSShttps://stackoverflow.com/questions/4148499/how-to-style-a-checkbox-using-css/49927978原创 2020-10-21 19:59:39 · 141 阅读 · 1 评论 -
箭头函数的泛型写法
参考https://stackoverflow.com/questions/32308370/what-is-the-syntax-for-typescript-arrow-functions-with-genericsTODO在这里插入代码片原创 2020-10-14 14:14:36 · 2383 阅读 · 0 评论 -
VSCode Debug 记录
相关教程资料Debug with VSCodehttps://zhuanlan.zhihu.com/p/71928374开始使用 VSCode 调试https://zhuanlan.zhihu.com/p/43016278具体操作及相关知识 上述两个链接已经有比较完备的描述 这里只记录个人遇到的问题“request”: “attach” 模式下无法connect设置的端口(默认9222)相关设置launch.json{ "version": "0.2.0", "configur原创 2020-10-09 14:09:47 · 345 阅读 · 0 评论 -
CSS 学习笔记(勉強ノート)
参考MDN web docshttps://developer.mozilla.org/zh-CN/docs/Web/Guide/CSS/Getting_started**选择器(Selectors)**类选择器(Class selectors)通过设置元素的 class 属性,可以为元素指定类名。类名由开发者自己指定。 文档中的多个元素可以拥有同一个类名。在写样式表时,类选择器是以英文句号(.)开头的。ID选择器(ID selectors)通过设置元素的 id 属性为该元素制定原创 2020-09-25 09:28:04 · 528 阅读 · 0 评论 -
css em(what-does-css-measurement-unit-em-actually-stand-for)
css em what-does-css-measurement-unit-em-actually-stand-forhttps://stackoverflow.com/questions/15827038/what-does-css-measurement-unit-em-actually-stand-for转载 2020-09-10 15:57:26 · 137 阅读 · 0 评论 -
Vscode创建自定义代码模板(eg:xxx.jsx)[javascriptreact.json]
{ // Place your snippets for javascriptreact here. Each snippet is defined under a snippet name and has a prefix, body and // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables..原创 2020-07-20 14:28:21 · 1531 阅读 · 0 评论