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

11 lines
392 B
HTML
Raw Normal View History

2023-02-09 22:18:06 +03:00
{{define "form/streamGRPC"}}
<a-form :colon="false" :label-col="{ md: {span:6} }" :wrapper-col="{ md: {span:14} }">
<a-form-item label="Service Name">
2023-12-17 18:16:50 +03:00
<a-input v-model.trim="inbound.stream.grpc.serviceName"></a-input>
</a-form-item>
<a-form-item label="MultiMode">
<a-switch v-model="inbound.stream.grpc.multiMode"></a-switch>
</a-form-item>
2023-02-09 22:18:06 +03:00
</a-form>
2023-12-17 18:16:50 +03:00
{{end}}