From 05ea54547515f7fb1eed5f31ccbde10e36041fb1 Mon Sep 17 00:00:00 2001 From: Corentin THOMASSET Date: Sun, 25 Jun 2023 15:00:50 +0200 Subject: refactor(ui): replaced some n-input to c-input (#505) --- src/tools/html-entities/html-entities.vue | 32 ++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) (limited to 'src/tools/html-entities/html-entities.vue') diff --git a/src/tools/html-entities/html-entities.vue b/src/tools/html-entities/html-entities.vue index dc44a0d..a0f6102 100644 --- a/src/tools/html-entities/html-entities.vue +++ b/src/tools/html-entities/html-entities.vue @@ -7,7 +7,7 @@ const escapeInput = ref('IT Tool'); const escapeOutput = computed(() => escape(escapeInput.value)); const { copy: copyEscaped } = useCopy({ source: escapeOutput }); -const unescapeInput = ref('<title>IT Tool</title'); +const unescapeInput = ref('<title>IT Tool</title>'); const unescapeOutput = computed(() => unescape(unescapeInput.value)); const { copy: copyUnescaped } = useCopy({ source: unescapeOutput }); @@ -15,21 +15,24 @@ const { copy: copyUnescaped } = useCopy({ source: unescapeOutput });