一。变量之间赋值
data:{
domain:"domain",
publicKey:"123",
secretKey:"123",
sub:"",
req:""
},
mounted:function (){
this.sub = "wss://"+this.domain+"/linear-swap-ws";
this.req = "https://"+this.domain;
},
}
二。变量之间数据联动
data:{
domain:"domain",
publicKey:"123",
secretKey:"123",
sub:"",
req:""
},
mounted:function (){
this.sub = "wss://"+this.domain+"/linear-swap-ws";
this.req = "https://"+this.domain;
},
watch:{
domain(newDomain,oldDomain){
this.sub = "wss://"+newDomain+"/linear-swap-ws";
this.req = "https://"+newDomain;
}
}```