上一页 1 2 3 4 5 6 7 8 9 ··· 41 下一页

2021年9月7日

vue-cli 常用命令

摘要: npm install -g vue-cli 安装 vue-cli vue init webpack 项目名 创建项目 npm run build 打包生产 npm install -g serve 安装serve npm run dev / npm start 项目启动 npm install s 阅读全文

posted @ 2021-09-07 15:40 水行者 阅读(179) 评论(0) 推荐(0) 编辑

2021年8月29日

// 限制8位数字+2位小数点 并且小于10000000.00

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文

posted @ 2021-08-29 18:04 水行者 阅读(83) 评论(0) 推荐(0) 编辑

2021年8月26日

JS实现直接运行html代码的方法

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文

posted @ 2021-08-26 11:56 水行者 阅读(769) 评论(0) 推荐(0) 编辑

2021年8月16日

vscode 快捷键-常用

摘要: Ctrl+d 单词选中 用于更名操作比较方便 Ctrl+Alt+F 格式化代码 阅读全文

posted @ 2021-08-16 13:36 水行者 阅读(46) 评论(0) 推荐(0) 编辑

2021年6月28日

js 拖拽

摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文

posted @ 2021-06-28 21:46 水行者 阅读(45) 评论(0) 推荐(0) 编辑

2021年6月27日

如何在html.js文件中使用vue组件

摘要: 1. html中引入 http-vue-loader.js 下载地址等详情访问: https://www.npmjs.com/package/http-vue-loader html中写法和vue中一样 <multisearch ref="multiSearchref" ></multisearch 阅读全文

posted @ 2021-06-27 21:21 水行者 阅读(2340) 评论(0) 推荐(0) 编辑

easy-mock 本地部署

摘要: 参考地址:https://blog.csdn.net/qq_40097298/article/details/85070964 安装中遇到的问题 [nodemon] app crashed - waiting for file changes before starting... 在安装过程中一直报 阅读全文

posted @ 2021-06-27 19:54 水行者 阅读(100) 评论(0) 推荐(0) 编辑

2021年6月11日

vue 解决跨域问题

摘要: //解决跨域 proxy: { [process.env.VUE_APP_BASE_API]: { target: 'https://mock.mengxuegu.com/mock/60b891ec1d22662b1b575432/blog-admin', changeOrigin: true,// 阅读全文

posted @ 2021-06-11 11:50 水行者 阅读(118) 评论(0) 推荐(0) 编辑

vue element-admin-ui 框架汉化配置

摘要: 阅读全文

posted @ 2021-06-11 09:44 水行者 阅读(833) 评论(0) 推荐(1) 编辑

2021年6月9日

git 常用命令

摘要: # 查看指定文件状态 git status [filename] #查看所有文件状态 git status # 添加所有文件到暂存区 git add . 注意有一个点 # 提交暂存区中的内容到本地仓库 -m 提交信息 git commit -m "消息内容" #提交远程仓库 git push # 列 阅读全文

posted @ 2021-06-09 13:11 水行者 阅读(46) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 41 下一页