This commit is contained in:
2025-12-26 21:56:11 +08:00
parent e857204140
commit 1688124e8e
31 changed files with 256 additions and 736 deletions

View File

@@ -1,6 +1,4 @@
<script setup lang="ts">
import { makeFirstCharUpper } from "@/utils/helper";
const route = useRoute();
// take category from route params & make first char upper
@@ -10,7 +8,7 @@ const category = computed(() => {
if (Array.isArray(name)) strName = name.at(0) || "";
else strName = name;
return makeFirstCharUpper(strName);
return strName;
});
</script>