上一页 1 2 3 4 5 6 ··· 26 下一页
摘要: proxy: { "/dev-api": { target: "http://172.18.247.123:9000", rewrite: (path) => path.replace(/^/dev-api/, ''), configure: (proxy, _options) => { proxy 阅读全文
posted @ 2023-11-20 17:40 fight139 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 强制更新 git强制覆盖: git fetch --all git reset --hard origin/master git pull 删除git缓存文件 git rm --cached vite.zip 阅读全文
posted @ 2023-09-21 16:07 fight139 阅读(14) 评论(0) 推荐(0) 编辑
摘要: ### 环境 1. vue3 2. "vuedraggable": "^4.1.0" ### 物料区 ```vue {{ element.name }} ``` ### 预览区 ```vue {{ element.name }} ``` ### iframe ```vue ``` 阅读全文
posted @ 2023-08-23 09:45 fight139 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 锁定版本 npm shrinkwrap 生成npm-shrinkwrap.json文件 node版本要求 yarn config set ignore-engines true 阅读全文
posted @ 2023-07-13 15:07 fight139 阅读(7) 评论(0) 推荐(0) 编辑
摘要: ### okhttp ```java public ApiResult exchange(Class clazz, Method method) throws Exception { FeignClient feignClient = (FeignClient)clazz.getAnnotation 阅读全文
posted @ 2023-07-10 16:49 fight139 阅读(10) 评论(0) 推荐(0) 编辑
摘要: ### rollup-plugin-visualizer 打包耗时打印 ```shell pnpm add rollup-plugin-visualizer -D ``` ```ts import { visualizer } from 'rollup-plugin-visualizer'; exp 阅读全文
posted @ 2023-07-07 18:06 fight139 阅读(11) 评论(0) 推荐(0) 编辑
摘要: ```vue --> 点击菜单 ``` 阅读全文
posted @ 2023-07-07 15:00 fight139 阅读(9) 评论(0) 推荐(0) 编辑
摘要: ### 驱动 ```xml com.microsoft.sqlserver mssql-jdbc 6.2.0.jre8 ``` ### SSL连接出错 ```shell [08S01] 驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全连接。 错误:“The serve 阅读全文
posted @ 2023-06-28 13:16 fight139 阅读(31) 评论(0) 推荐(0) 编辑
摘要: ```js import axios from "axios"; import qs from "qs" const show = async function () { const result = []; const files = await showDirectoryPicker(); co 阅读全文
posted @ 2023-06-13 13:49 fight139 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 链式编程缩进 阅读全文
posted @ 2023-02-26 12:22 fight139 阅读(8) 评论(0) 推荐(0) 编辑
摘要: ### svg symbol ```html ``` 使用`symbol`注册svg的优点: - 复用 - 拓展性高:支持宽度、高度、颜色等属性修改 ### 使用场景 从后端或某个目录下获取svg字符串,然后注册到body后,供当前页面使用 阅读全文
posted @ 2023-02-24 17:54 fight139 阅读(23) 评论(0) 推荐(0) 编辑
摘要: github测试项目 --filter pnpm --filter @lc/lowcode-core run dev 模块间依赖 如:给目标@lc/lowcode-core安装依赖:@lc/utils pnpm i @lc/utils -r --filter @lc/lowcode-core 注意: 阅读全文
posted @ 2023-01-11 15:56 fight139 阅读(63) 评论(0) 推荐(0) 编辑
摘要: lerna初始化项目 # 创建项目 mkdir lerna-demo cd lerna-demo # 初始化项目 lerna init -i 项目结构: lerna.json { "packages": [ "packages/*" ], "version": "independent", "npm 阅读全文
posted @ 2023-01-10 15:07 fight139 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 自定义dom事件 dom自定义事件 // 事件监听 document.addEventListener('drag:start', function(ev) { console.log(ev.target) }) // 触发事件 const dom = document.getElementById 阅读全文
posted @ 2023-01-04 16:14 fight139 阅读(13) 评论(0) 推荐(0) 编辑
摘要: // 自定义插件 ./plugins/fullImportPlugin import * as path from 'path' import type { Plugin, ResolvedConfig } from 'vite' export default function fullImport 阅读全文
posted @ 2022-12-15 16:21 fight139 阅读(42) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 26 下一页