IOS

vue 对axios get pust put delete 封装

  axios.jsimportaxiosfrom'axios';importQsfrom'qs';import{Message}from'element-ui';axios.defaults.baseURL="/api";//设置请求超时时间axios.defaults.timeout=30000...
代码星球·2020-07-28

vue axios的封装

在根目录上创建一个vue.config.js文件constpath=require("path");constresolve=function(dir){returnpath.join(__dirname,dir);};module.exports={publicPath:"./",outputDir:"dist",a...
代码星球·2020-07-28

yarn出现“There are no scenarios ; must have at least one"

错误信息:“Therearenoscenarios;musthaveatleastone"背景:在将vscode自动化构建编译打包时出现这种情况,主要是执行yarn这一步出现的。本次这个另外的虚拟机环境有点乱,主要体现为版本不统一(比如node.js要求为8.12.0及其9以下,而原先的为4版本)等大大小小...
代码星球·2020-07-24