摘要:
翻译 搜索 复制 阅读全文
摘要:
记录时间:2024-11-27 使用SQL语句插入数据 使用SQL语句修改数据 使用SQL语句删除数据 通过form表单插入数据 浏览数据 搜索数据 翻译 搜索 复制 阅读全文
摘要:
记录时间:2024-11-27 创建数据库 修改和删除数据库 创建数据表 修改数据表 删除数据表 翻译 搜索 复制 阅读全文
摘要:
记录时间:2024-11-27 phpstudy下载 phpstudy下载地址:https://www.xp.cn/ 旧版入口:https://old.xp.cn/ phpstudy安装 翻译 搜索 复制 阅读全文
摘要:
记录时间:2024-10-24 types src/types/index.ts // types统一出口 export * from './device-driver' export * from './device' export * from './flow-config' export * 阅读全文
摘要:
记录时间:2024-10-24 1.Pinia的集成 # 使用npm命令安装 npm install pinia 注:当前最新版本 "pinia": "^2.2.4", 2.Vue-Router的集成 # 使用npm命令安装 npm install vue-router 注:当前最新版本 "vue- 阅读全文
摘要:
记录时间:2024-10-24 1.配置开发、线上和测试环境 .env.development VITE_APP_ENV=development # VITE_APP_BASE_URL=/api VITE_APP_BASE_URL=http://127.0.0.1:9000/ VITE_APP_AD 阅读全文
摘要:
记录时间:2024-10-23 1.配置浏览器自动打开 配置文件:package.json "scripts": { "dev": "vite --open" } 2.配置src别名 (1)安装 @types/node 输入npm命令 npm i @types/node --save-dev (2) 阅读全文