feat(ui): default proxies view to all tab (#5384)

This commit is contained in:
fatedier
2026-06-29 22:49:08 +08:00
committed by GitHub
parent ae1c0504ec
commit a3b3b35b69
3 changed files with 21 additions and 21 deletions

View File

@@ -120,7 +120,7 @@ const proxyTypes = [
{ label: 'SUDP', value: 'sudp' },
]
const activeType = ref((route.params.type as string) || 'tcp')
const activeType = ref((route.params.type as string) || 'all')
const proxies = ref<BaseProxy[]>([])
const loading = ref(false)
const searchText = ref('')