mirror of
https://github.com/alireza0/x-ui.git
synced 2026-03-14 05:23:09 +00:00
* clipboard.js v2.0.11 * axios v0.28.1 * URI.js v1.19.11 * vue v2.7.16 * OCPD * default config - UseIP domainStrategy * minify css
14 lines
543 B
HTML
14 lines
543 B
HTML
{{define "form/streamGRPC"}}
|
|
<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" style="width: 250px;"></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>
|
|
</a-form>
|
|
{{end}}
|