mirror of
https://github.com/alireza0/x-ui.git
synced 2026-07-10 01:42:24 +00:00
13 lines
661 B
HTML
13 lines
661 B
HTML
{{define "form/streamGRPC"}}
|
|
<a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }">
|
|
<a-form-item label='{{ i18n "pages.inbounds.stream.grpc.serviceName" }}'>
|
|
<a-input v-model.trim="inbound.stream.grpc.serviceName" style="width: 250px;"></a-input>
|
|
</a-form-item>
|
|
<a-form-item label='{{ i18n "pages.inbounds.stream.grpc.authority" }}'>
|
|
<a-input v-model.trim="inbound.stream.grpc.authority"></a-input>
|
|
</a-form-item>
|
|
<a-form-item label='{{ i18n "pages.inbounds.stream.grpc.multiMode" }}'>
|
|
<a-switch v-model="inbound.stream.grpc.multiMode"></a-switch>
|
|
</a-form-item>
|
|
</a-form>
|
|
{{end}}
|