mirror of
https://github.com/fatedier/frp.git
synced 2025-07-27 07:35:07 +00:00
fix web js (#2444)
This commit is contained in:
@@ -97,7 +97,7 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
proxies: null,
|
||||
proxies: new Array(),
|
||||
vhost_http_port: "",
|
||||
subdomain_host: ""
|
||||
}
|
||||
|
@@ -92,7 +92,7 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
proxies: null,
|
||||
proxies: new Array(),
|
||||
vhost_https_port: '',
|
||||
subdomain_host: ''
|
||||
}
|
||||
|
@@ -78,7 +78,7 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
proxies: null
|
||||
proxies: new Array(),
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
@@ -78,7 +78,7 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
proxies: null
|
||||
proxies: new Array(),
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
@@ -86,7 +86,7 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
proxies: null
|
||||
proxies: new Array(),
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
@@ -88,7 +88,7 @@
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
proxies: null
|
||||
proxies: new Array(),
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
Reference in New Issue
Block a user