Files
x-ui/web/html/xui/form/stream/stream_http.html
2021-05-28 17:32:51 +08:00

12 lines
403 B
HTML

{{define "form/streamHTTP"}}
<a-form layout="inline">
<a-form-item label="路径">
<a-input v-model.trim="inbound.stream.http.path"></a-input>
</a-form-item>
<a-form-item label="host">
<a-row v-for="(host, index) in inbound.stream.http.host">
<a-input v-model.trim="inbound.stream.http.host[index]"></a-input>
</a-row>
</a-form-item>
</a-form>
{{end}}