refactor: update type casting and clean up imports

- Add type casting for route.meta.title in index.vue
- Update tailwind css path in components.json
- Remove unused imports and simplify dashboard component
This commit is contained in:
Khafid Prayoga
2025-08-20 14:49:59 +07:00
parent ff67dd5146
commit bd98bb815a
3 changed files with 6 additions and 10 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ definePageMeta({
const route = useRoute()
useHead({
title: () => route.meta.title,
title: () => route.meta.title as string,
})
</script>