it-tools/src/tools/random-port-generator/random-port-generator.vue

31 lines
751 B
Vue
Raw Normal View History

2022-04-13 13:55:41 +02:00
<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>