From 086d31eab5b3b1a927803eab5e650585f61abe19 Mon Sep 17 00:00:00 2001 From: Corentin Thomasset Date: Fri, 22 Apr 2022 23:31:40 +0200 Subject: refactor(lint): linter auto fix --- src/tools/html-entities/html-entities.vue | 47 +++++++++++-------------------- 1 file changed, 16 insertions(+), 31 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 3fd3748..13d5b6e 100644 --- a/src/tools/html-entities/html-entities.vue +++ b/src/tools/html-entities/html-entities.vue @@ -1,8 +1,6 @@ - \ No newline at end of file +const unescapeInput = ref('<title>IT Tool</title'); +const unescapeOutput = computed(() => unescape(unescapeInput.value)); +const { copy: copyUnescaped } = useCopy({ source: unescapeOutput }); + -- cgit v1.2.3