Public 总结
狂暴草鱼卷
这个作者很懒,什么都没留下…
展开
-
nrm 管理 npm 源
全局安装 npm install -g nrm查看版本 nrm --version查看可选源 nrm ls结果类似这样 npm ---------- https://registry.npmjs.org/ yarn --------- https://registry.yarnpkg.com/ tencent ------ https://mirrors.cloud.tencent.com/npm/ cnpm --------- https://r.cnpmjs.org/ ta.原创 2022-01-26 14:58:15 · 467 阅读 · 0 评论 -
常用的正则表达式
【代码】常用的正则表达式。原创 2022-10-18 17:27:38 · 535 阅读 · 0 评论 -
npm 如何发包 删包
npm unpublish 命令只能删除72小时以内发布的包npm unpublish 删除的包,在24小时内不允许重复发布原创 2022-06-12 19:34:57 · 265 阅读 · 1 评论 -
Vditor 一款浏览器端的 Markdown And Vue
如何在项目中安装安装依赖npm install vditor --save在代码中引入并初始化对象import Vditor from 'vditor'import "~vditor/src/assets/scss/index"const vditor = new Vditor(id, {options...})创建一个编辑器<div id="vditor"></div>mounted() { this.contentEditor = new V.原创 2022-04-06 17:01:06 · 971 阅读 · 3 评论 -
Mac快捷键
⌘(command) + a 全选⌘(command) + c 将所选项拷贝到剪贴板⌘(command) + f 查找文稿中的项目或打开“查找”窗口⌘(command) + g 再次查找 查找之前所找到项目出现的下一个位置Shift + ⌘(command) + g 再次查找 查找之前所找到项目出现的上一个位置⌘(command) + h 隐藏当前的应用的窗口Shift + ⌘(command) + h 查看最前面的应用但隐藏所有其他应用⌘(command) +..原创 2022-04-06 12:01:25 · 525 阅读 · 0 评论 -
关于element表单的使用
export default { props: { visible: { type: Boolean, required: true } }, methods: { closeModal() { this.$emit('update:visible', false); }, clearValidate() { this.$nextTick(() => { this.$refs.form.原创 2022-02-16 15:20:17 · 362 阅读 · 0 评论 -
vxe-table 一个pc端表格组件库
获取当前表格的数据(完整的全量表体数据、处理条件之后的全量表体数据、当前渲染中的表体数据、当前渲染中的表尾数据)只对 edit-config 配置时有效,单元格编辑状态下被关闭时会触发该事件。遇到一个问题 在table中的下拉框 层级太低 显示不出来。因为vxe的数据不同步 我们可以通过这个方法同步一下值。把vxe-table进行全局安装 main.js引入。deep穿透或者是各种层级调整都不太好用。可以这样试试 在引入的地方修改层级~原创 2022-03-23 14:24:36 · 3704 阅读 · 0 评论