会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
奇迹不会泯灭
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
下一页
2022年8月23日
git命令记录
摘要: git知识: git并不是基于diff进行管理的,git的每个commit都是当前版本的快照 git工作流: 1.feature branch git flow,gitlab flow,github flow都属于feature branch development,它们都有一个共同点:都采用『功能
阅读全文
posted @ 2022-08-23 10:08 zeal666
阅读(74)
评论(0)
推荐(0)
2022年8月12日
正则表达式的匹配规则
摘要: https://www.cnblogs.com/youyouyunduo/p/11706688.html 一些匹配规则 1字面量字符和元字符 1.1(/./)点字符匹配 点字符匹配除回车(\r)、换行(\n)、行分隔符(\u2028)、段分隔符(\u2029)以外的所有字符。 1.2(/|/)or字
阅读全文
posted @ 2022-08-12 15:55 zeal666
阅读(367)
评论(0)
推荐(0)
正则表达式的一些记录匹配方法
摘要: https://wangdoc.com/javascript/stdlib/regexp.html reg reg的方法exec、test exec返回匹配到的字符 test返回ture或者false string string的方法match,search,replace,split match返
阅读全文
posted @ 2022-08-12 14:01 zeal666
阅读(55)
评论(0)
推荐(0)
2022年8月10日
vue的keep-alive
摘要: vue3中的setup使用 defineOptions({ name: 'userOrder-report', }) 来描述组件的name 如果要使用keep-alive 路由的名字要和组件的名字相同 keepAlive标签中的exclude是对比的组件实例中的name 全局守卫中拿到的to或fro
阅读全文
posted @ 2022-08-10 18:04 zeal666
阅读(54)
评论(0)
推荐(0)
2022年7月29日
图论
摘要: /** * 邻接矩阵 */ export class DenseGraph { // 节点数 n: number // 边数 m: number // 是否为有向图 directed: boolean // 图得具体数据 g: boolean[][] constructor(n: number, d
阅读全文
posted @ 2022-07-29 14:40 zeal666
阅读(23)
评论(0)
推荐(0)
2022年7月26日
ios下拉白屏遇到的一些问题
摘要: test
阅读全文
posted @ 2022-07-26 15:21 zeal666
阅读(27)
评论(0)
推荐(0)
2022年7月7日
vue3的emit和props
摘要: const emit = defineEmits(['changeRefresh']) emit('changeRefresh',value) const props = defineProps(['showRefresh']) const props = withDefaults(definePr
阅读全文
posted @ 2022-07-07 16:59 zeal666
阅读(725)
评论(0)
推荐(0)
2022年6月30日
npm一些命令
摘要: https://docs.npmjs.com/cli/v6/commands/npm-update 官网地址 npm i 安装最新的包 -d 安装在devDependencies npm update 更新包的最新版本,同时安装缺少的包 更新package.json的包版本 npm update命令
阅读全文
posted @ 2022-06-30 13:52 zeal666
阅读(26)
评论(0)
推荐(0)
2022年6月28日
vue数组拖动
摘要: <template> <div> <div> 拖动 </div> <div class="container"> <div v-for="item in items" :key="item.id" draggable @dragstart="startDrag($event, item)" @dra
阅读全文
posted @ 2022-06-28 16:48 zeal666
阅读(89)
评论(0)
推荐(0)
a-select的placeholder不生效得原因
摘要: 1.需要把v-model绑定的值设置为undefined,不能设置为''
阅读全文
posted @ 2022-06-28 13:59 zeal666
阅读(260)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
下一页
公告