feat: 添加代理配置功能,包括主机、端口、用户名和密码设置

This commit is contained in:
Vixalie
2026-03-31 22:20:16 +08:00
parent 6593ca4d8b
commit 13c03caeae
8 changed files with 481 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<script lang="ts">
import EnableProxy from './EnableProxy.svelte';
import ProtocolSelect from './ProtocolSelect.svelte';
import ProxyHost from './ProxyHost.svelte';
import ProxyPassword from './ProxyPassword.svelte';
import ProxyPort from './ProxyPort.svelte';
import ProxyUsername from './ProxyUsername.svelte';
let enabledProxy = $state<boolean>(false);
</script>
<section class="px-2 py-4 flex flex-col gap-2">
<ProtocolSelect />
<ProxyHost />
<ProxyPort />
<ProxyUsername />
<ProxyPassword />
<EnableProxy />
</section>