aboutsummaryrefslogtreecommitdiff
path: root/src/tools/random-port-generator/random-port-generator.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/random-port-generator/random-port-generator.vue')
-rw-r--r--src/tools/random-port-generator/random-port-generator.vue26
1 files changed, 19 insertions, 7 deletions
diff --git a/src/tools/random-port-generator/random-port-generator.vue b/src/tools/random-port-generator/random-port-generator.vue
index d6ab5d6..16d9458 100644
--- a/src/tools/random-port-generator/random-port-generator.vue
+++ b/src/tools/random-port-generator/random-port-generator.vue
@@ -1,11 +1,23 @@
<template>
- <n-card>
- <div class="port">{{ port }}</div>
- <n-space justify="center">
- <n-button @click="copy" secondary>Copy</n-button>
- <n-button @click="refreshPort" secondary>Refresh</n-button>
- </n-space>
- </n-card>
+ <n-card>
+ <div class="port">
+ {{ port }}
+ </div>
+ <n-space justify="center">
+ <n-button
+ secondary
+ @click="copy"
+ >
+ Copy
+ </n-button>
+ <n-button
+ secondary
+ @click="refreshPort"
+ >
+ Refresh
+ </n-button>
+ </n-space>
+ </n-card>
</template>
<script setup lang="ts">