outbound.html 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. {{define "form/outbound"}}
  2. <!-- base -->
  3. <a-tabs :active-key="outModal.activeKey" style="padding: 0; background-color: transparent;" @change="(activeKey) => {outModal.toggleJson(activeKey == '2'); }">
  4. <a-tab-pane key="1" tab="Form">
  5. <a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }">
  6. <a-form-item label='{{ i18n "protocol" }}'>
  7. <a-select v-model="outbound.protocol" :dropdown-class-name="themeSwitcher.currentTheme">
  8. <a-select-option v-for="x,y in Protocols" :value="x">[[ y ]]</a-select-option>
  9. </a-select>
  10. </a-form-item>
  11. <a-form-item label='{{ i18n "pages.xray.outbound.tag" }}' has-feedback :validate-status="outModal.duplicateTag? 'warning' : 'success'">
  12. <a-input v-model.trim="outbound.tag" @change="outModal.check()" placeholder='{{ i18n "pages.xray.outbound.tagDesc" }}'></a-input>
  13. </a-form-item>
  14. <a-form-item label='{{ i18n "pages.xray.outbound.sendThrough" }}'>
  15. <a-input v-model="outbound.sendThrough"></a-input>
  16. </a-form-item>
  17. <!-- freedom settings-->
  18. <template v-if="outbound.protocol === Protocols.Freedom">
  19. <a-form-item label='Strategy'>
  20. <a-select v-model="outbound.settings.domainStrategy" :dropdown-class-name="themeSwitcher.currentTheme">
  21. <a-select-option v-for="s in OutboundDomainStrategies" :value="s">[[ s ]]</a-select-option>
  22. </a-select>
  23. </a-form-item>
  24. <a-form-item label='Fragment'>
  25. <a-switch :checked="Object.keys(outbound.settings.fragment).length >0" @change="checked => outbound.settings.fragment = checked ? new Outbound.FreedomSettings.Fragment() : {}"></a-switch>
  26. </a-form-item>
  27. <template v-if="Object.keys(outbound.settings.fragment).length >0">
  28. <a-form-item label='Packets'>
  29. <a-select v-model="outbound.settings.fragment.packets" :dropdown-class-name="themeSwitcher.currentTheme">
  30. <a-select-option v-for="s in ['1-3','tlshello']" :value="s">[[ s ]]</a-select-option>
  31. </a-select>
  32. </a-form-item>
  33. <a-form-item label='Length'>
  34. <a-input v-model.trim="outbound.settings.fragment.length"></a-input>
  35. </a-form-item>
  36. <a-form-item label='Interval'>
  37. <a-input v-model.trim="outbound.settings.fragment.interval"></a-input>
  38. </a-form-item>
  39. </template>
  40. </template>
  41. <!-- blackhole settings -->
  42. <template v-if="outbound.protocol === Protocols.Blackhole">
  43. <a-form-item label='Response Type'>
  44. <a-select v-model="outbound.settings.type" :dropdown-class-name="themeSwitcher.currentTheme">
  45. <a-select-option v-for="s in ['', 'none','http']" :value="s">[[ s ]]</a-select-option>
  46. </a-select>
  47. </a-form-item>
  48. </template>
  49. <!-- dns settings -->
  50. <template v-if="outbound.protocol === Protocols.DNS">
  51. <a-form-item label='{{ i18n "pages.inbounds.network" }}'>
  52. <a-select v-model="outbound.settings.network" :dropdown-class-name="themeSwitcher.currentTheme">
  53. <a-select-option v-for="s in ['udp','tcp']" :value="s">[[ s ]]</a-select-option>
  54. </a-select>
  55. </a-form-item>
  56. </template>
  57. <!-- wireguard settings -->
  58. <template v-if="outbound.protocol === Protocols.Wireguard">
  59. <a-form-item>
  60. <template slot="label">
  61. <a-tooltip>
  62. <template slot="title">
  63. <span>{{ i18n "pages.xray.rules.useComma" }}</span>
  64. </template>
  65. {{ i18n "pages.xray.outbound.address" }}
  66. <a-icon type="question-circle"></a-icon>
  67. </a-tooltip>
  68. </template>
  69. <a-input v-model.trim="outbound.settings.address"></a-input>
  70. </a-form-item>
  71. <a-form-item label='{{ i18n "pages.xray.wireguard.secretKey" }}'>
  72. <a-input v-model.trim="outbound.settings.secretKey"></a-input>
  73. </a-form-item>
  74. <a-form-item label='{{ i18n "pages.xray.wireguard.domainStrategy" }}'>
  75. <a-select v-model="outbound.settings.domainStrategy" :dropdown-class-name="themeSwitcher.currentTheme">
  76. <a-select-option v-for="wds in ['', ...WireguardDomainStrategy]" :value="wds">[[ wds ]]</a-select-option>
  77. </a-select>
  78. </a-form-item>
  79. <a-form-item label='MTU'>
  80. <a-input-number v-model.number="outbound.settings.mtu"></a-input-number>
  81. </a-form-item>
  82. <a-form-item label='Workers'>
  83. <a-input-number min="0" v-model.number="outbound.settings.workers"></a-input-number>
  84. </a-form-item>
  85. <a-form-item label='Kernel Mode'>
  86. <a-switch v-model="outbound.settings.kernelMode"></a-switch>
  87. </a-form-item>
  88. <a-form-item>
  89. <template slot="label">
  90. <a-tooltip>
  91. <template slot="title">
  92. <span>{{ i18n "pages.xray.rules.useComma" }}</span>
  93. </template> Reserved <a-icon type="question-circle"></a-icon>
  94. </a-tooltip>
  95. </template>
  96. <a-input v-model="outbound.settings.reserved"></a-input>
  97. </a-form-item>
  98. <a-form-item label="Peers">
  99. <a-button icon="plus" type="primary" size="small" @click="outbound.settings.addPeer()"></a-button>
  100. </a-form-item>
  101. <a-form v-for="(peer, index) in outbound.settings.peers" :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }">
  102. <a-divider style="margin:0;"> Peer [[ index + 1 ]] <a-icon v-if="outbound.settings.peers.length>1" type="delete" @click="() => outbound.settings.delPeer(index)" style="color: rgb(255, 77, 79);cursor: pointer;"></a-icon>
  103. </a-divider>
  104. <a-form-item label='{{ i18n "pages.xray.wireguard.endpoint" }}'>
  105. <a-input v-model.trim="peer.endpoint"></a-input>
  106. </a-form-item>
  107. <a-form-item label='{{ i18n "pages.xray.wireguard.publicKey" }}'>
  108. <a-input v-model.trim="peer.publicKey"></a-input>
  109. </a-form-item>
  110. <a-form-item label='{{ i18n "pages.xray.wireguard.psk" }}'>
  111. <a-input v-model.trim="peer.psk"></a-input>
  112. </a-form-item>
  113. <a-form-item>
  114. <template slot="label">
  115. {{ i18n "pages.xray.wireguard.allowedIPs" }}
  116. <a-button icon="plus" type="primary" size="small" @click="peer.allowedIPs.push('')"></a-button>
  117. </template>
  118. <template v-for="(aip, index) in peer.allowedIPs" style="margin-bottom: 10px;">
  119. <a-input v-model.trim="peer.allowedIPs[index]">
  120. <a-button icon="minus" v-if="peer.allowedIPs.length>1" slot="addonAfter" size="small" @click="peer.allowedIPs.splice(index, 1)"></a-button>
  121. </a-input>
  122. </template>
  123. </a-form-item>
  124. <a-form-item label='Keep Alive'>
  125. <a-input-number v-model.number="peer.keepAlive" :min="0"></a-input-number>
  126. </a-form-item>
  127. </a-form>
  128. </template>
  129. <!-- Address + Port -->
  130. <template v-if="outbound.hasAddressPort()">
  131. <a-form-item label='{{ i18n "pages.inbounds.address" }}'>
  132. <a-input v-model.trim="outbound.settings.address"></a-input>
  133. </a-form-item>
  134. <a-form-item label='{{ i18n "pages.inbounds.port" }}'>
  135. <a-input-number v-model.number="outbound.settings.port" :min="1" :max="65532"></a-input-number>
  136. </a-form-item>
  137. </template>
  138. <!-- Vnext (vless/vmess) settings -->
  139. <template v-if="[Protocols.VMess, Protocols.VLESS].includes(outbound.protocol)">
  140. <a-form-item label='ID'>
  141. <a-input v-model.trim="outbound.settings.id"></a-input>
  142. </a-form-item>
  143. <!-- vless settings -->
  144. <template v-if="outbound.canEnableTlsFlow()">
  145. <a-form-item label='Flow'>
  146. <a-select v-model="outbound.settings.flow" :dropdown-class-name="themeSwitcher.currentTheme">
  147. <a-select-option value="" selected>{{ i18n "none" }}</a-select-option>
  148. <a-select-option v-for="key in TLS_FLOW_CONTROL" :value="key">[[ key ]]</a-select-option>
  149. </a-select>
  150. </a-form-item>
  151. </template>
  152. </template>
  153. <!-- Servers (trojan/shadowsocks/socks/http) settings -->
  154. <template v-if="outbound.hasServers()">
  155. <!-- http / socks -->
  156. <template v-if="outbound.hasUsername()">
  157. <a-form-item label='{{ i18n "username" }}'>
  158. <a-input v-model.trim="outbound.settings.user"></a-input>
  159. </a-form-item>
  160. <a-form-item label='{{ i18n "password" }}'>
  161. <a-input v-model.trim="outbound.settings.pass"></a-input>
  162. </a-form-item>
  163. </template>
  164. <!-- trojan/shadowsocks -->
  165. <template v-if="[Protocols.Trojan, Protocols.Shadowsocks].includes(outbound.protocol)">
  166. <a-form-item label='{{ i18n "password" }}'>
  167. <a-input v-model.trim="outbound.settings.password"></a-input>
  168. </a-form-item>
  169. </template>
  170. <!-- shadowsocks -->
  171. <template v-if="outbound.protocol === Protocols.Shadowsocks">
  172. <a-form-item label='{{ i18n "encryption" }}'>
  173. <a-select v-model="outbound.settings.method" :dropdown-class-name="themeSwitcher.currentTheme">
  174. <a-select-option v-for="(method, method_name) in SSMethods" :value="method">[[ method_name ]]</a-select-option>
  175. </a-select>
  176. </a-form-item>
  177. <a-form-item label='UDP over TCP'>
  178. <a-switch v-model="outbound.settings.uot"></a-switch>
  179. </a-form-item>
  180. <a-form-item label='UoTVersion'>
  181. <a-input-number v-model.number="outbound.settings.UoTVersion" :min="1" :max="2"></a-input-number>
  182. </a-form-item>
  183. </template>
  184. </template>
  185. <!-- stream settings -->
  186. <template v-if="outbound.canEnableStream()">
  187. <a-form-item label='{{ i18n "transmission" }}'>
  188. <a-select v-model="outbound.stream.network" @change="streamNetworkChange" :dropdown-class-name="themeSwitcher.currentTheme">
  189. <a-select-option value="tcp">TCP</a-select-option>
  190. <a-select-option value="kcp">mKCP</a-select-option>
  191. <a-select-option value="ws">WebSocket</a-select-option>
  192. <a-select-option value="http">H2</a-select-option>
  193. <a-select-option value="quic">QUIC</a-select-option>
  194. <a-select-option value="grpc">gRPC</a-select-option>
  195. <a-select-option value="httpupgrade">HTTPUpgrade</a-select-option>
  196. <a-select-option value="splithttp">SplitHTTP</a-select-option>
  197. </a-select>
  198. </a-form-item>
  199. <template v-if="outbound.stream.network === 'tcp'">
  200. <a-form-item label='HTTP {{ i18n "camouflage" }}'>
  201. <a-switch :checked="outbound.stream.tcp.type === 'http'" @change="checked => outbound.stream.tcp.type = checked ? 'http' : 'none'"></a-switch>
  202. </a-form-item>
  203. <template v-if="outbound.stream.tcp.type == 'http'">
  204. <a-form-item label='{{ i18n "host" }}'>
  205. <a-input v-model.trim="outbound.stream.tcp.host"></a-input>
  206. </a-form-item>
  207. <a-form-item label='{{ i18n "path" }}'>
  208. <a-input v-model.trim="outbound.stream.tcp.path"></a-input>
  209. </a-form-item>
  210. </template>
  211. </template>
  212. <!-- kcp -->
  213. <template v-if="outbound.stream.network === 'kcp'">
  214. <a-form-item label='{{ i18n "camouflage" }}'>
  215. <a-select v-model="outbound.stream.kcp.type" :dropdown-class-name="themeSwitcher.currentTheme">
  216. <a-select-option value="none">None</a-select-option>
  217. <a-select-option value="srtp">SRTP</a-select-option>
  218. <a-select-option value="utp">uTP</a-select-option>
  219. <a-select-option value="wechat-video">WeChat</a-select-option>
  220. <a-select-option value="dtls">DTLS 1.2</a-select-option>
  221. <a-select-option value="wireguard">WireGuard</a-select-option>
  222. <a-select-option value="dns">DNS</a-select-option>
  223. </a-select>
  224. </a-form-item>
  225. <a-form-item label='{{ i18n "password" }}'>
  226. <a-input v-model="outbound.stream.kcp.seed"></a-input>
  227. </a-form-item>
  228. <a-form-item label='MTU'>
  229. <a-input-number v-model.number="outbound.stream.kcp.mtu"></a-input-number>
  230. </a-form-item>
  231. <a-form-item label='TTI (ms)'>
  232. <a-input-number v-model.number="outbound.stream.kcp.tti"></a-input-number>
  233. </a-form-item>
  234. <a-form-item label='Uplink (MB/s)'>
  235. <a-input-number v-model.number="outbound.stream.kcp.upCap"></a-input-number>
  236. </a-form-item>
  237. <a-form-item label='Downlink (MB/s)'>
  238. <a-input-number v-model.number="outbound.stream.kcp.downCap"></a-input-number>
  239. </a-form-item>
  240. <a-form-item label='Congestion'>
  241. <a-switch v-model="outbound.stream.kcp.congestion"></a-switch>
  242. </a-form-item>
  243. <a-form-item label='Read Buffer (MB)'>
  244. <a-input-number v-model.number="outbound.stream.kcp.readBuffer"></a-input-number>
  245. </a-form-item>
  246. <a-form-item label='Write Buffer (MB)'>
  247. <a-input-number v-model.number="outbound.stream.kcp.writeBuffer"></a-input-number>
  248. </a-form-item>
  249. </template>
  250. <!-- ws -->
  251. <template v-if="outbound.stream.network === 'ws'">
  252. <a-form-item label='{{ i18n "host" }}'>
  253. <a-input v-model="outbound.stream.ws.host"></a-input>
  254. </a-form-item>
  255. <a-form-item label='{{ i18n "path" }}'>
  256. <a-input v-model.trim="outbound.stream.ws.path"></a-input>
  257. </a-form-item>
  258. </template>
  259. <!-- http -->
  260. <template v-if="outbound.stream.network === 'http'">
  261. <a-form-item label='{{ i18n "host" }}'>
  262. <a-input v-model.trim="outbound.stream.http.host"></a-input>
  263. </a-form-item>
  264. <a-form-item label='{{ i18n "path" }}'>
  265. <a-input v-model.trim="outbound.stream.http.path"></a-input>
  266. </a-form-item>
  267. </template>
  268. <!-- quic -->
  269. <template v-if="outbound.stream.network === 'quic'">
  270. <a-form-item label='{{ i18n "pages.inbounds.stream.quic.encryption" }}'>
  271. <a-select v-model="outbound.stream.quic.security" :dropdown-class-name="themeSwitcher.currentTheme">
  272. <a-select-option value="none">None</a-select-option>
  273. <a-select-option value="aes-128-gcm">AES-128-GCM</a-select-option>
  274. <a-select-option value="chacha20-poly1305">CHACHA20-POLY1305</a-select-option>
  275. </a-select>
  276. </a-form-item>
  277. <a-form-item label='{{ i18n "password" }}'>
  278. <a-input v-model.trim="outbound.stream.quic.key"></a-input>
  279. </a-form-item>
  280. <a-form-item label='{{ i18n "camouflage" }}'>
  281. <a-select v-model="outbound.stream.quic.type" :dropdown-class-name="themeSwitcher.currentTheme">
  282. <a-select-option value="none">None</a-select-option>
  283. <a-select-option value="srtp">SRTP</a-select-option>
  284. <a-select-option value="utp">uTP</a-select-option>
  285. <a-select-option value="wechat-video">WeChat</a-select-option>
  286. <a-select-option value="dtls">DTLS 1.2</a-select-option>
  287. <a-select-option value="wireguard">WireGuard</a-select-option>
  288. </a-select>
  289. </a-form-item>
  290. </template>
  291. <!-- grpc -->
  292. <template v-if="outbound.stream.network === 'grpc'">
  293. <a-form-item label='Service Name'>
  294. <a-input v-model.trim="outbound.stream.grpc.serviceName"></a-input>
  295. </a-form-item>
  296. <a-form-item label="Authority">
  297. <a-input v-model.trim="outbound.stream.grpc.authority"></a-input>
  298. </a-form-item>
  299. <a-form-item label='Multi Mode'>
  300. <a-switch v-model="outbound.stream.grpc.multiMode"></a-switch>
  301. </a-form-item>
  302. </template>
  303. <!-- httpupgrade -->
  304. <template v-if="outbound.stream.network === 'httpupgrade'">
  305. <a-form-item label='{{ i18n "host" }}'>
  306. <a-input v-model="outbound.stream.httpupgrade.host"></a-input>
  307. </a-form-item>
  308. <a-form-item label='{{ i18n "path" }}'>
  309. <a-input v-model.trim="outbound.stream.httpupgrade.path"></a-input>
  310. </a-form-item>
  311. </template>
  312. <!-- splithttp -->
  313. <template v-if="outbound.stream.network === 'splithttp'">
  314. <a-form-item label='{{ i18n "host" }}'>
  315. <a-input v-model="outbound.stream.splithttp.host"></a-input>
  316. </a-form-item>
  317. <a-form-item label='{{ i18n "path" }}'>
  318. <a-input v-model.trim="outbound.stream.splithttp.path"></a-input>
  319. </a-form-item>
  320. </template>
  321. </template>
  322. <!-- tls settings -->
  323. <template v-if="outbound.canEnableTls()">
  324. <a-form-item label='{{ i18n "security" }}'>
  325. <a-radio-group v-model="outbound.stream.security" button-style="solid">
  326. <a-radio-button value="none">{{ i18n "none" }}</a-radio-button>
  327. <a-radio-button value="tls">TLS</a-radio-button>
  328. <a-radio-button v-if="outbound.canEnableReality()" value="reality">Reality</a-radio-button>
  329. </a-radio-group>
  330. </a-form-item>
  331. <template v-if="outbound.stream.isTls">
  332. <a-form-item label="SNI" placeholder="Server Name Indication">
  333. <a-input v-model.trim="outbound.stream.tls.serverName"></a-input>
  334. </a-form-item>
  335. <a-form-item label="uTLS">
  336. <a-select v-model="outbound.stream.tls.fingerprint" :dropdown-class-name="themeSwitcher.currentTheme">
  337. <a-select-option value=''>None</a-select-option>
  338. <a-select-option v-for="key in UTLS_FINGERPRINT" :value="key">[[ key ]]</a-select-option>
  339. </a-select>
  340. </a-form-item>
  341. <a-form-item label="ALPN">
  342. <a-select mode="multiple" :dropdown-class-name="themeSwitcher.currentTheme" v-model="outbound.stream.tls.alpn">
  343. <a-select-option v-for="alpn in ALPN_OPTION" :value="alpn">[[ alpn ]]</a-select-option>
  344. </a-select>
  345. </a-form-item>
  346. <a-form-item label="Allow Insecure">
  347. <a-switch v-model="outbound.stream.tls.allowInsecure"></a-switch>
  348. </a-form-item>
  349. </template>
  350. <!-- reality settings -->
  351. <template v-if="outbound.stream.isReality">
  352. <a-form-item label="SNI">
  353. <a-input v-model.trim="outbound.stream.reality.serverName"></a-input>
  354. </a-form-item>
  355. <a-form-item label="uTLS">
  356. <a-select v-model="outbound.stream.reality.fingerprint" :dropdown-class-name="themeSwitcher.currentTheme">
  357. <a-select-option v-for="key in UTLS_FINGERPRINT" :value="key">[[ key ]]</a-select-option>
  358. </a-select>
  359. </a-form-item>
  360. <a-form-item label="Short ID">
  361. <a-input v-model.trim="outbound.stream.reality.shortId" style="width:250px"></a-input>
  362. </a-form-item>
  363. <a-form-item label="SpiderX">
  364. <a-input v-model.trim="outbound.stream.reality.spiderX" style="width:250px"></a-input>
  365. </a-form-item>
  366. <a-form-item label="Public Key">
  367. <a-input v-model.trim="outbound.stream.reality.publicKey"></a-input>
  368. </a-form-item>
  369. </template>
  370. </template>
  371. <!-- sockopt settings -->
  372. <a-form-item label="Sockopts">
  373. <a-switch v-model="outbound.stream.sockoptSwitch"></a-switch>
  374. </a-form-item>
  375. <template v-if="outbound.stream.sockoptSwitch">
  376. <a-form-item label="Dialer Proxy">
  377. <a-select v-model="outbound.stream.sockopt.dialerProxy" :dropdown-class-name="themeSwitcher.currentTheme">
  378. <a-select-option v-for="tag in ['', ...outModal.tags]" :value="tag">[[ tag ]]</a-select-option>
  379. </a-select>
  380. </a-form-item>
  381. <a-form-item label="TCP Fast Open">
  382. <a-switch v-model="outbound.stream.sockopt.tcpFastOpen"></a-switch>
  383. </a-form-item>
  384. <a-form-item label="Keep Alive Interval">
  385. <a-input-number v-model="outbound.stream.sockopt.tcpKeepAliveInterval" :min="0"></a-input-number>
  386. </a-form-item>
  387. <a-form-item label="Multipath TCP">
  388. <a-switch v-model.trim="outbound.stream.sockopt.tcpMptcp"></a-switch>
  389. </a-form-item>
  390. <a-form-item label="TCP No-Delay">
  391. <a-switch v-model="outbound.stream.sockopt.tcpNoDelay"></a-switch>
  392. </a-form-item>
  393. </template>
  394. <!-- mux settings -->
  395. <template v-if="outbound.canEnableMux()">
  396. <a-form-item label="Mux">
  397. <a-switch v-model="outbound.mux.enabled"></a-switch>
  398. </a-form-item>
  399. <template v-if="outbound.mux.enabled">
  400. <a-form-item label="Concurrency">
  401. <a-input-number v-model="outbound.mux.concurrency" :min="-1" :max="1024"></a-input-number>
  402. </a-form-item>
  403. <a-form-item label="xudp Concurrency">
  404. <a-input-number v-model="outbound.mux.xudpConcurrency" :min="-1" :max="1024"></a-input-number>
  405. </a-form-item>
  406. <a-form-item label="xudp UDP 443">
  407. <a-select v-model="outbound.mux.xudpProxyUDP443" :dropdown-class-name="themeSwitcher.currentTheme">
  408. <a-select-option v-for="c in ['reject', 'allow', 'skip']" :value="c">[[ c ]]</a-select-option>
  409. </a-select>
  410. </a-form-item>
  411. </template>
  412. </template>
  413. </a-form>
  414. </a-tab-pane>
  415. <a-tab-pane key="2" tab="JSON" force-render="true">
  416. <a-form-item style="margin: 10px 0"> Link: <a-input v-model.trim="outModal.link" style="width: 300px; margin-right: 5px;" placeholder="vmess:// vless:// trojan:// ss://"></a-input>
  417. <a-button @click="convertLink" type="primary">
  418. <a-icon type="form"></a-icon>
  419. </a-button>
  420. </a-form-item>
  421. <textarea style="position:absolute; left: -800px;" id="outboundJson"></textarea>
  422. </a-tab-pane>
  423. </a-tabs>
  424. {{end}}