摘要:
首先确认已安装Git,可以通过 git –version 命令可以查看当前安装的版本。 为同一个电脑,配置多个 git 账号,其整体流程如下: 清空默认的全局 user.name 和 user.email 为不同的 git 账户生成不同的 ssh-key 将以上的 ssh-key 分别添加到 ssh 阅读全文
摘要:
传送门:https://blog.csdn.net/weixin_40973138/article/details/106081946 IP地址查看传送门:https://site.ip138.com/raw.githubusercontent.com/ 阅读全文
摘要:
一、js 判断 根据浏览器ua判断当前是否为移动设备: middleware中间件执行流程顺序: 1、nuxt.config.js 2、匹配布局 3、匹配页面 项目根目录下新建 middleware 文件夹,新建 midd.js 文件 export default function ({ isSer 阅读全文
摘要:
一、 使用 middleware 判断(推荐) 根据浏览器ua判断当前是否为移动设备: middleware中间件执行流程顺序: 1、nuxt.config.js 2、匹配布局 3、匹配页面 项目根目录下新建 middleware 文件夹,新建 midd.js 文件 export default f 阅读全文
摘要:
传送门:https://juejin.cn/post/6956456779761303560 传送门:https://www.jianshu.com/p/fba791ce8c4c 阅读全文
摘要:
<span type="par">【背景切换】</span> span[type] { font-size: 13px; } span[type='par'] { color: #e05c69; background-color: #e1f1fa; .modify; } span[type='wor 阅读全文
摘要:
// 替换 html 特殊字符 export function replaceHtmlSymbol(html) { if (html == null) { return '' } return html.replace(/</gm, '<') .replace(/>/gm, '>') . 阅读全文
摘要:
初始化 Map,在创建的同时初始化实例,可以给 Map 构造函数传入一个可迭代对象,需要包含键/值对数组。 // 使用嵌套数组初始化映射 const m1 = new Map([ ["key1", "val1"], ["key2", "val2"], ["key3", "val3"] ]); ale 阅读全文
摘要:
1.手动切换 export const BASE_URL = 'http://codercba.com:9002' // export const BASE_URL = 'http://codercba.prod:9002' export const TIME_OUT = 10000 2.依赖当前环 阅读全文
摘要:
集成公共状态管理插件 @reduxjs/toolkit react-redux redux-persist store 之 index.ts 代码 import { configureStore } from '@reduxjs/toolkit' import { useSelector, Type 阅读全文