3x-ui/web/html/form/stream/stream_grpc.html

18 lines
504 B
HTML
Raw Normal View History

2023-02-09 19:18:06 +00:00
{{define "form/streamGRPC"}}
2026-04-20 15:25:18 +00:00
<a-form
:colon="false"
:label-col="{ md: {span:8} }"
:wrapper-col="{ md: {span:14} }"
>
<a-form-item label="Service Name">
<a-input v-model.trim="inbound.stream.grpc.serviceName"></a-input>
</a-form-item>
<a-form-item label="Authority">
<a-input v-model.trim="inbound.stream.grpc.authority"></a-input>
</a-form-item>
<a-form-item label="Multi Mode">
<a-switch v-model="inbound.stream.grpc.multiMode"></a-switch>
</a-form-item>
2023-02-09 19:18:06 +00:00
</a-form>
2026-04-20 15:25:18 +00:00
{{end}}