mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 13:57:10 -04:00
refactor(lint): linter auto fix
This commit is contained in:
parent
8e29a97404
commit
086d31eab5
54 changed files with 1122 additions and 1503 deletions
|
@ -4,44 +4,33 @@
|
|||
{{ port }}
|
||||
</div>
|
||||
<n-space justify="center">
|
||||
<n-button
|
||||
secondary
|
||||
@click="copy"
|
||||
>
|
||||
Copy
|
||||
</n-button>
|
||||
<n-button
|
||||
secondary
|
||||
@click="refreshPort"
|
||||
>
|
||||
Refresh
|
||||
</n-button>
|
||||
<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">
|
||||
import { useCopy } from '@/composable/copy';
|
||||
import { ref } from 'vue'
|
||||
import { generatePort } from './random-port-generator.model'
|
||||
import { ref } from 'vue';
|
||||
import { generatePort } from './random-port-generator.model';
|
||||
|
||||
const port = ref('')
|
||||
const port = ref('');
|
||||
|
||||
const { copy } = useCopy({ source: port, text: 'Port copied to the clipboard' })
|
||||
const { copy } = useCopy({ source: port, text: 'Port copied to the clipboard' });
|
||||
|
||||
function refreshPort() {
|
||||
port.value = String(generatePort())
|
||||
port.value = String(generatePort());
|
||||
}
|
||||
|
||||
refreshPort()
|
||||
|
||||
refreshPort();
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
.port {
|
||||
text-align: center;
|
||||
font-size: 26px;
|
||||
font-weight: 400;
|
||||
margin: 10px 0 25px;
|
||||
text-align: center;
|
||||
font-size: 26px;
|
||||
font-weight: 400;
|
||||
margin: 10px 0 25px;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue