🚧 预计增加网站设置和历史

This commit is contained in:
7836246
2024-03-02 21:39:02 +08:00
parent 1095e106e3
commit f9693bd560
8 changed files with 108 additions and 7 deletions
+19
View File
@@ -0,0 +1,19 @@
<script setup lang="ts">
</script>
<template>
<div>
<div title="Change Color">
<div
class="cursor-pointer flex h-10 w-10 items-center justify-center rounded-lg bg-gray-100 dark:bg-gray-700"
>
<Icon name="ic:baseline-history" class=" text-lg dark:text-white" />
</div>
</div>
</div>
</template>
<style scoped>
</style>
+21
View File
@@ -0,0 +1,21 @@
<script setup lang="ts">
const localePath = useLocalePath()
const router = useRouter();
</script>
<template>
<div>
<div title="Change Color">
<div
class="cursor-pointer flex h-10 w-10 items-center justify-center rounded-lg bg-gray-100 dark:bg-gray-700"
@click="router.push(localePath('/settings'))"
>
<Icon name="uil:setting" class=" text-lg dark:text-white" />
</div>
</div>
</div>
</template>
<style scoped>
</style>