摘要: // Vue.config.js 配置选项 module.exports = { // 选项 // 基本路径 publicPath: "./", // 构建时的输出目录 outputDir: "dist", // 放置静态资源的目录 assetsDir: "static", // html 的输出路 阅读全文
posted @ 2021-12-31 10:36 AvenCheung 阅读(276) 评论(0) 推荐(0) 编辑
摘要: import cryptoJs from 'crypto-js' // DES加密 export const encryptDes = (message, key) => { var keyHex = cryptoJs.enc.Utf8.parse(key) var option = { mode: 阅读全文
posted @ 2021-12-31 10:04 AvenCheung 阅读(22) 评论(0) 推荐(0) 编辑