diff options
author | 2023-04-19 21:38:59 +0200 | |
---|---|---|
committer | 2023-04-19 22:33:22 +0200 | |
commit | c45bce36f985a550d7bfad744099b601cb61e449 (patch) | |
tree | 2c5e186db857776a06879dce7529b5396de214b1 /src/tools/html-entities/html-entities.vue | |
parent | df989e24b3937876f094301e33762677d604888a (diff) | |
download | it-tools-c45bce36f985a550d7bfad744099b601cb61e449.tar.gz it-tools-c45bce36f985a550d7bfad744099b601cb61e449.tar.zst it-tools-c45bce36f985a550d7bfad744099b601cb61e449.zip |
refactor(ui): getting ride of naive ui buttons
Diffstat (limited to 'src/tools/html-entities/html-entities.vue')
-rw-r--r-- | src/tools/html-entities/html-entities.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/html-entities/html-entities.vue b/src/tools/html-entities/html-entities.vue index 7481259..889626b 100644 --- a/src/tools/html-entities/html-entities.vue +++ b/src/tools/html-entities/html-entities.vue @@ -20,7 +20,7 @@ </n-form-item> <n-space justify="center"> - <n-button secondary @click="copyEscaped"> Copy </n-button> + <c-button @click="copyEscaped"> Copy </c-button> </n-space> </n-card> <n-card title="Unescape html entities"> @@ -44,7 +44,7 @@ </n-form-item> <n-space justify="center"> - <n-button secondary @click="copyUnescaped"> Copy </n-button> + <c-button @click="copyUnescaped"> Copy </c-button> </n-space> </n-card> </template> |