From 4892b575bd89d5529f2164a00280d22427866a8b Mon Sep 17 00:00:00 2001 From: NEO <001@etc.dog> Date: Sun, 21 Apr 2024 10:37:40 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20Hydration=20problem.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 4 +- public/humans.txt | 6 +-- src/App.vue | 4 ++ src/entry-client.ts | 4 ++ src/layouts/base.layout.vue | 51 ++++++++++--------- .../token-generator/token-generator.tool.vue | 3 +- vite.config.ts | 9 ++++ 7 files changed, 53 insertions(+), 28 deletions(-) diff --git a/index.html b/index.html index 26c5f538..94149ce8 100644 --- a/index.html +++ b/index.html @@ -48,6 +48,8 @@
- + + + diff --git a/public/humans.txt b/public/humans.txt index d5d49e2b..eb564219 100644 --- a/public/humans.txt +++ b/public/humans.txt @@ -1,4 +1,4 @@ /* TEAM */ -Developer: Corentin Thomasset -Site: https://github.com/CorentinTh -Twitter: @cthmsst \ No newline at end of file +Developer: Ne0 +Site: https://github.com/zeeklog +Twitter: @neo2028 diff --git a/src/App.vue b/src/App.vue index 8e65335d..4b3ab337 100644 --- a/src/App.vue +++ b/src/App.vue @@ -18,6 +18,10 @@ syncRef( locale, useStorage('locale', locale), ); + +onMounted(() => { + console.log('APP MOUNTED'); +});