mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-08 23:25:03 -04:00
35 lines
867 B
Vue
35 lines
867 B
Vue
<script setup lang="ts">
|
|
import { textToNatoAlphabet } from './text-to-nato-alphabet.service';
|
|
import { useCopy } from '@/composable/copy';
|
|
|
|
const input = ref('');
|
|
const natoText = computed(() => textToNatoAlphabet({ text: input.value }));
|
|
const { copy } = useCopy({ source: natoText, text: 'NATO alphabet string copied.' });
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<c-input-text
|
|
v-model:value="input"
|
|
label="Your text to convert to NATO phonetic alphabet"
|
|
placeholder="Put your text here..."
|
|
clearable
|
|
mb-5
|
|
/>
|
|
|
|
<div v-if="natoText">
|
|
<div mb-2>
|
|
Your text in NATO phonetic alphabet
|
|
</div>
|
|
<c-card>
|
|
{{ natoText }}
|
|
</c-card>
|
|
|
|
<div mt-3 flex justify-center>
|
|
<c-button autofocus @click="copy">
|
|
Copy NATO string
|
|
</c-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|