bug fixed

This commit is contained in:
Peng-YM
2020-09-01 17:56:24 +08:00
parent d60b7ff87c
commit 9b39a9dfa4
5 changed files with 2875 additions and 2877 deletions

View File

@@ -36,7 +36,7 @@ import {axios} from "@/utils";
export default {
name: "ProxyList",
props: ['url'],
props: ['url', 'sub'],
data: function (){
return {
proxies: []
@@ -44,7 +44,7 @@ export default {
},
methods: {
refresh() {
axios.post(`/refresh`, {url: this.url}).then(() => {
axios.post(`/refresh`, {url: this.sub}).then(() => {
this.fetch();
})
},