在src文件夹下新建config.js文件
let server='';
if(process.env.NODE_ENV=='development'){
server='http://localhost:8080/';
}else{
server='http://00.00.00.00:00/';
}
export const SERVER=server;
需要前后端数据交互时,在文件js中引入。一定要加{}
import {SERVER} from '@/config';
async created(){
let res=await fetch(SERVER+'api/account');
let arr=await res.json();
this.accounts=arr;
}