mirror of
https://github.com/alireza0/x-ui.git
synced 2026-03-19 07:15:48 +00:00
31 lines
1.2 KiB
HTML
31 lines
1.2 KiB
HTML
{{define "form/vmess"}}
|
|
<a-form layout="inline">
|
|
<a-form layout="inline">
|
|
<a-form-item label="Email">
|
|
<a-input v-model.trim="inbound.settings.vmesses[0].email"></a-input>
|
|
</a-form-item>
|
|
<a-form-item>
|
|
<span slot="label">
|
|
Ip Count Limit
|
|
<a-tooltip>
|
|
<template slot="title">
|
|
disable inbound if more than entered count (0 for disable limit ip)
|
|
</template>
|
|
<a-icon type="question-circle" theme="filled"></a-icon>
|
|
</a-tooltip>
|
|
</span>
|
|
|
|
<a-input type="number" v-model.number="inbound.settings.vmesses[0].limitIp"></a-input>
|
|
</a-form-item>
|
|
</a-form>
|
|
<a-form-item label="id">
|
|
<a-input v-model.trim="inbound.settings.vmesses[0].id"></a-input>
|
|
</a-form-item>
|
|
<a-form-item label="额外 ID">
|
|
<a-input type="number" v-model.number="inbound.settings.vmesses[0].alterId"></a-input>
|
|
</a-form-item>
|
|
<a-form-item label="禁用不安全加密">
|
|
<a-switch v-model.number="inbound.settings.disableInsecure"></a-switch>
|
|
</a-form-item>
|
|
</a-form>
|
|
{{end}} |