摘要: 在webstrom中写代码以后使用ctrl+alt+l规范了代码但是还是报Expected indentation of 0 spaces but found 2这些错误如何解决呢 在 image.png 文件中加入"indent": ["off", 2]就可以了当修改了.eslintrc.js文件 阅读全文
posted @ 2020-09-04 20:37 larybird 阅读(738) 评论(0) 推荐(0) 编辑
摘要: 要调用后台、数据,需引入vue-resource,此处可使用npm工具,进行安装(忘记安装), 1、安装vue-resource到项目中,找到当前项目 输入:npm install vue-resource --save 2、安装完毕后,在main.js中导入,如下所示: import VueRes 阅读全文
posted @ 2020-09-04 17:36 larybird 阅读(3230) 评论(0) 推荐(0) 编辑
摘要: 1.先关闭jenkins ; 2:命令行下修改端口: sudo defaults write /Library/Preferences/org.jenkins-ci httpPort 7070 3:启动jenkins 附: 启动jenkins: sudo launchctl load /Librar 阅读全文
posted @ 2020-09-04 16:40 larybird 阅读(466) 评论(0) 推荐(0) 编辑
摘要: 查找8080端口 sudo lsof -i :8080 然后根据PID杀进程: sudo kill -9 61342(即pid) 转载自:https://www.jianshu.com/p/6428b6852f88 阅读全文
posted @ 2020-09-04 16:39 larybird 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 使用Django + Vue.js快速而优雅地构建前后端分离项目 http://www.php230.com/1485111962.html https://www.zhihu.com/collection/139984643 整合 Django + Vue.js 框架快速搭建web项目 https 阅读全文
posted @ 2020-09-04 11:18 larybird 阅读(241) 评论(0) 推荐(0) 编辑