From 34605ce9b9eac7989e0213d999f6e764b6907947 Mon Sep 17 00:00:00 2001 From: stuzer05 Date: Fri, 19 Apr 2024 14:41:49 +0300 Subject: [PATCH] Add Str to NATO alphabet tool --- src/components/Sidebar.vue | 3 +- src/router/index.js | 9 ++++-- src/views/StrToNATOAlphabet.vue | 55 +++++++++++++++++++++++++++++++++ 3 files changed, 64 insertions(+), 3 deletions(-) create mode 100644 src/views/StrToNATOAlphabet.vue diff --git a/src/components/Sidebar.vue b/src/components/Sidebar.vue index e977ff9..319d73a 100644 --- a/src/components/Sidebar.vue +++ b/src/components/Sidebar.vue @@ -48,7 +48,8 @@ export default { 'str_to_lower_upper': 'Str to lower/upper', 'str_remove_duplicate_lines': 'Str remove duplicate lines', 'str_pad': 'Str pad', - 'numeronym': 'Str numeronym (i18n)', + 'str_numeronym': 'Str numeronym (i18n)', + 'str_to_nato_alphabet': 'Str to NATO alphabet', 'url_encode_decode': 'URL encode/decode', 'url_query_viewer': 'URL query viewer', }, diff --git a/src/router/index.js b/src/router/index.js index e8b1955..265d89a 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -66,10 +66,15 @@ const router = createRouter({ component: () => import('../views/StrToPHPArray.vue'), }, { - path: '/numeronym', - name: 'numeronym', + path: '/str_numeronym', + name: 'str_numeronym', component: () => import('../views/StrNumeronym.vue'), }, + { + path: '/str_to_nato_alphabet', + name: 'str_to_nato_alphabet', + component: () => import('../views/StrToNATOAlphabet.vue'), + }, { path: '/php_array_to_json', name: 'php_array_to_json', diff --git a/src/views/StrToNATOAlphabet.vue b/src/views/StrToNATOAlphabet.vue new file mode 100644 index 0000000..e369e9a --- /dev/null +++ b/src/views/StrToNATOAlphabet.vue @@ -0,0 +1,55 @@ + + + + + \ No newline at end of file