diff options
Diffstat (limited to 'web/html/settings/xray')
| -rw-r--r-- | web/html/settings/xray/basics.html | 19 | ||||
| -rw-r--r-- | web/html/settings/xray/outbounds.html | 2 |
2 files changed, 21 insertions, 0 deletions
diff --git a/web/html/settings/xray/basics.html b/web/html/settings/xray/basics.html index 9a31038a..c637e30a 100644 --- a/web/html/settings/xray/basics.html +++ b/web/html/settings/xray/basics.html @@ -313,6 +313,25 @@ </template> </template> </a-setting-list-item> + <a-setting-list-item paddings="small"> + <template #title>{{ i18n "pages.xray.nordRouting" }}</template> + <template #control> + <template v-if="NordExist"> + <a-select mode="tags" :style="{ width: '100%' }" + v-model="nordDomains" + :dropdown-class-name="themeSwitcher.currentTheme"> + <a-select-option :value="p.value" :label="p.label" + v-for="p in settingsData.ServicesOptions"> + <span>[[ p.label ]]</span> + </a-select-option> + </a-select> + </template> + <template v-else> + <a-button type="primary" icon="api" + @click="showNord()">{{ i18n "pages.xray.outbound.nordvpn" }}</a-button> + </template> + </template> + </a-setting-list-item> </a-collapse-panel> <a-collapse-panel key="6" header='{{ i18n "pages.settings.resetDefaultConfig"}}'> diff --git a/web/html/settings/xray/outbounds.html b/web/html/settings/xray/outbounds.html index 3995760f..232fe55e 100644 --- a/web/html/settings/xray/outbounds.html +++ b/web/html/settings/xray/outbounds.html @@ -9,6 +9,8 @@ </a-button> <a-button type="primary" icon="cloud" @click="showWarp()">WARP</a-button> + <a-button type="primary" icon="api" + @click="showNord()">NordVPN</a-button> </a-space> </a-col> <a-col :xs="12" :sm="12" :lg="12" :style="{ textAlign: 'right' }"> |
