Outbound modal

This commit is contained in:
Alireza Ahmadi
2024-05-09 23:27:08 +02:00
parent 9a02e6593c
commit 43d1aecec7
45 changed files with 2391 additions and 308 deletions
+4 -1
View File
@@ -44,10 +44,12 @@
</v-text-field>
</v-col>
</v-row>
<Headers :data="transport" />
</template>
<script lang="ts">
import { HTTP } from '../../types/transport'
import Headers from '../Headers.vue'
export default {
props: ['transport'],
data() {
@@ -70,6 +72,7 @@ export default {
get() { return this.Http.ping_timeout ? parseInt(this.Http.ping_timeout.replace('s','')) : '' },
set(newValue:number) { this.$props.transport.ping_timeout = newValue ? newValue + 's' : '' }
}
}
},
components: { Headers }
}
</script>