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