# admim-dom **Repository Path**: szx_mzt/admim-dom ## Basic Information - **Project Name**: admim-dom - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-05-08 - **Last Updated**: 2025-08-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 框架 vue: ^3.4.21\ ts:^5.2.2\ vite:^5.2.0 # vite 支持:ref,reactive,src/components下文件 的自动引入。\ 支持:@引入src下文件 # svg二次封装 文件名 + 图标名 ``` ``` # 接口编辑地址 ./index.js 使用nodejs + express框架 \ 启动接口服务器指令 ``` node index ``` # 接口处理 安全考录采用POST代替GET ``` const instance = axios.create({ baseURL: import.meta.env.VITE_BASE_API, timeout: 1000, method: 'post' // 默认请求类型 }); ``` 安全考虑采用哈希算法进行存储和比较密码 ``` npm i bcrypt ``` 使用更安全和标准的JWT(JSON Web Token)来生成和验证token ``` npm i jsonwebtoken ```