aboutsummaryrefslogtreecommitdiff
path: root/src/tools/random-port-generator/random-port-generator.vue
blob: 16d9458e78c05c475a2594ea6e2e0ff80f7ebaf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<template>
  <n-card>
    <div class="port">
      {{ port }}
    </div>
    <n-space justify="center">
      <n-button
        secondary
        @click="copy"
      >
        Copy
      </n-button>
      <n-button
        secondary
        @click="refreshPort"
      >
        Refresh
      </n-button>
    </n-space>
  </n-card>
</template>

<script setup lang="ts">
import { useCopy } from '@/composable/copy';
import { ref } from 'vue'
import { generatePort } from './random-port-generator.model'

const port = ref('')

const { copy } = useCopy({ source: port, text: 'Port copied to the clipboard' })

function refreshPort() {
    port.value = String(generatePort())
}

refreshPort()

</script>

<style lang="less" scoped>
.port {
    text-align: center;
    font-size: 26px;
    font-weight: 400;
    margin: 10px 0 25px;
}
</style>