1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-18 20:59:37 +02:00
it-tools/src/tools/random-port-generator/random-port-generator.vue
2023-04-20 20:57:38 +02:00

30 lines
758 B
Vue

<template>
<c-card>
<div class="port">
{{ port }}
</div>
<n-space justify="center">
<c-button @click="copy"> Copy </c-button>
<c-button @click="refreshPort"> Refresh </c-button>
</n-space>
</c-card>
</template>
<script setup lang="ts">
import { computedRefreshable } from '@/composable/computedRefreshable';
import { useCopy } from '@/composable/copy';
import { generatePort } from './random-port-generator.model';
const [port, refreshPort] = computedRefreshable(() => String(generatePort()));
const { copy } = useCopy({ source: port, text: 'Port copied to the clipboard' });
</script>
<style lang="less" scoped>
.port {
text-align: center;
font-size: 26px;
font-weight: 400;
margin: 10px 0 25px;
}
</style>