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