diff options
author | 2023-04-19 21:38:59 +0200 | |
---|---|---|
committer | 2023-04-19 22:33:22 +0200 | |
commit | c45bce36f985a550d7bfad744099b601cb61e449 (patch) | |
tree | 2c5e186db857776a06879dce7529b5396de214b1 /src/pages/404.page.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/pages/404.page.vue')
-rw-r--r-- | src/pages/404.page.vue | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pages/404.page.vue b/src/pages/404.page.vue index 4ec1cb4..fb879aa 100644 --- a/src/pages/404.page.vue +++ b/src/pages/404.page.vue @@ -13,8 +13,6 @@ useHead({ title: 'Page not found - IT Tools' }); <n-text mt-4 block depth="3">Sorry, this page does not seem to exist</n-text> <n-text mb-8 block depth="3">Maybe the cache is doing tricky things, try force-refreshing?</n-text> - <router-link to="/" #="{ navigate, href }" custom> - <n-button tag="a" :href="href" secondary @click="navigate"> Back home </n-button> - </router-link> + <c-button to="/"> Back home </c-button> </div> </template> |