mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 13:57:10 -04:00
feat(tool): random port generator
This commit is contained in:
parent
afac5664c8
commit
7c540f1208
4 changed files with 47 additions and 1 deletions
31
src/tools/random-port-generator/random-port-generator.vue
Normal file
31
src/tools/random-port-generator/random-port-generator.vue
Normal file
|
@ -0,0 +1,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>
|
Loading…
Add table
Add a link
Reference in a new issue