chore: Move commit information to bottom of the page in App.vue
All checks were successful
CI / cache-and-install (push) Successful in 1m7s

This commit is contained in:
严浩
2024-08-14 17:17:24 +08:00
parent cf9d33b580
commit cc3e4efb99

View File

@ -3,6 +3,6 @@ const VITE_BUILD_COMMIT = import.meta.env.VITE_BUILD_COMMIT;
</script>
<template>
<div fixed rounded-br-4 top-0 left-0 z-9999 px-4 py-2 bg-black text-white>commit: {{ VITE_BUILD_COMMIT }}</div>
<div fixed rounded-br-4 bottom-0 left-0 z-9999 px-4 py-2 bg-black text-white>commit: {{ VITE_BUILD_COMMIT }}</div>
<RouterView />
</template>