mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-18 20:59:37 +02:00
30 lines
758 B
Vue
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>
|