stream_http.html 766 B

123456789101112131415161718192021222324
  1. {{define "form/streamHTTP"}}
  2. <a-form layout="inline">
  3. <table width="100%" class="ant-table-tbody">
  4. <tr>
  5. <td>{{ i18n "path" }}</td>
  6. <td>
  7. <a-form-item>
  8. <a-input v-model.trim="inbound.stream.http.path" style="width: 250px;"></a-input>
  9. </a-form-item>
  10. </td>
  11. </tr>
  12. <tr>
  13. <td>host</td>
  14. <td>
  15. <a-form-item>
  16. <a-row v-for="(host, index) in inbound.stream.http.host">
  17. <a-input v-model.trim="inbound.stream.http.host[index]" style="width: 250px;"></a-input>
  18. </a-row>
  19. </a-form-item>
  20. </td>
  21. </tr>
  22. </table>
  23. </a-form>
  24. {{end}}