stream_http.html 414 B

123456789101112
  1. {{define "form/streamHTTP"}}
  2. <a-form layout="inline">
  3. <a-form-item label='{{ i18n "path" }}'>
  4. <a-input v-model.trim="inbound.stream.http.path"></a-input>
  5. </a-form-item>
  6. <a-form-item label="Host">
  7. <a-row v-for="(host, index) in inbound.stream.http.host">
  8. <a-input v-model.trim="inbound.stream.http.host[index]"></a-input>
  9. </a-row>
  10. </a-form-item>
  11. </a-form>
  12. {{end}}