blob: 5c94a635738e80dc014e9b4151b2147851748401 (
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
|
<template>
<n-card>
<n-input :value="port" readonly style="text-align: center; font-family: monospace;" />
<br>
<br>
<n-space justify="center">
<n-button @click="copy" secondary>Copy</n-button>
<n-button @click="refreshPort" secondary>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="scss" scoped>
</style>
|